/* Onboarding Steps Specific Styles */

/* Email Upload Area */
.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    margin-bottom: 1.5rem;
}

.upload-area:hover {
    border-color: #0d6efd;
    background-color: #f1f8ff;
}

.upload-area i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    display: block;
}

.upload-area h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.upload-area p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

#browse-files {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Upload Progress */
#upload-progress {
    margin: 1.5rem 0;
    display: none;
}

.progress {
    height: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    overflow: hidden;
    background-color: #e9ecef;
}

.progress-bar {
    background-color: #0d6efd;
    transition: width 0.6s ease;
}

/* File List */
#file-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.file-list-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.file-list-item:last-child {
    border-bottom: none;
}

.file-list-item:hover {
    background-color: #f8f9fa;
}

.file-icon {
    font-size: 1.5rem;
    color: #6c757d;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta {
    font-size: 0.75rem;
    color: #6c757d;
}

.file-actions .btn {
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

.file-actions .btn i {
    font-size: 0.875rem;
}

/* Toast styles moved to toast-notifications.css */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .upload-area {
        padding: 1.5rem 1rem;
    }
    
    .file-list-item {
        padding: 0.5rem;
    }
    
    .file-actions .btn {
        padding: 0.2rem 0.4rem;
        margin-left: 0.3rem;
    }
}