/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader {
    text-align: center;
}

.loader-icon {
    width: 80px;
    height: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-icon path {
    animation: pathAnimation 2s ease-in-out infinite;
}

.loader-text {
    margin-top: 1.5rem;
    color: #7dd3c0;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes pathAnimation {
    0%, 100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 100;
        stroke-dashoffset: 50;
    }
}
