.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999; /* Makes sure it's on top */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
  
.loader--hidden {
    opacity: 0;
    visibility: hidden;
}
  
.loader::after {
    content: "";
    width: 40px;  /* Reduced from 75px */
    height: 40px; /* Reduced from 75px */
    border: 3px solid #f3f3f3; /* Reduced from 15px */
    border-top-color: #00cfc9;
    border-radius: 50%;
    animation: loading 0.6s linear infinite;
}
  
@keyframes loading {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}
  