* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.nav {
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-link {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    color: black !important;
}

.nav-link:hover {
    color: #000000 !important;
    transform: scale(1.1);
}

.btn-primary {
    background-color: #012172 !important;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #012172 !important;
}

.file-icon {
    font-size: 2rem !important;
}

.files {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.files:hover {
    transform: scale(1.1);
    /* color: gray; */
    cursor: pointer;
}


.note-text{
    animation: blinker 5s linear infinite;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Light blur effect */
    backdrop-filter: blur(5px); /* Apply blur */
    display: none; /* Hide initially */
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Ensure it's on top */
}

@keyframes blinker {
    50% {
        transform: scale(1.1);
    }
  }