﻿.resume-upload-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.upload-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.helper-text {
    color: #718096;
    margin-bottom: 1.5rem;
}

.drop-zone {
    border: 2px dashed #cbd5e0;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f7fafc;
}

    .drop-zone:hover {
        border-color: #4299e1;
        background-color: #ebf8ff;
    }

    .drop-zone.dragging {
        border-color: #4299e1;
        background-color: #ebf8ff;
        transform: scale(1.02);
    }

.drop-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    width: 64px;
    height: 64px;
    color: #4299e1;
}

.drag-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2d3748;
    margin: 0;
}

.or-text {
    color: #a0aec0;
    margin: 0.5rem 0;
}

.btn-browse {
    background-color: #4299e1;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-browse:hover {
        background-color: #3182ce;
    }

.file-info {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.5rem;
}

.uploading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    border: 4px solid #e2e8f0;
    border-top: 4px solid #4299e1;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.small-text {
    font-size: 0.875rem;
    color: #718096;
}

.skip-section {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-link {
    background: none;
    border: none;
    color: #4299e1;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
}

    .btn-link:hover {
        color: #3182ce;
    }

.upload-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #48bb78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.upload-success h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.file-details {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

    .file-details p {
        margin: 0.5rem 0;
    }

.parsed-info {
    color: #48bb78;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
}

.alert-danger {
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    color: #c53030;
}
