.upload-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 4, 7, 0.9);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(254, 222, 123, 0.3);
    border-top-color: var(--lot-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.loader-subtext {
    color: var(--lot-orange);
    font-size: 1rem;
    margin: 0;
}

.progress-container {
    width: 300px;
    max-width: 80%;
    height: 12px;
    background-color: rgba(254, 222, 123, 0.2);
    border-radius: 6px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--lot-orange);
    border-radius: 6px;
    transition: width 0.1s ease-out;
}

.progress-text {
    color: var(--white);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.file-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.file-error p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}
