/* File Upload Component Styles */
.file-upload-container {
    margin-bottom: 1.5rem;
}

.file-upload-dropzone {
    position: relative;
    border: 2px dashed #adb5bd;
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-dropzone:hover {
    background-color: #e9ecef;
    border-color: #6c757d;
}

.file-upload-dropzone.active {
    background-color: #e3f2fd;
    border-color: #25556A;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.drop-content {
    pointer-events: none;
    text-align: center;
}

.drop-content i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    display: block;
}

.drop-content p {
    margin: 0;
    color: #495057;
    font-size: 1rem;
}

/* Selected file display */
.file-selected-info {
    text-align: center;
    pointer-events: none;
}

.file-selected-info i {
    font-size: 2.5rem;
    color: #25556A;
    margin-bottom: 0.5rem;
    display: block;
}

.file-name {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.25rem;
    word-break: break-all;
}

.file-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e3f2fd;
    color: #25556A;
    border-radius: 1rem;
    font-size: 0.875rem;
}