/* Custom File Upload Styles */
.custom-file-upload-wrapper {
    display: inline-flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.custom-file-button {
    white-space: nowrap;
    flex-shrink: 0;
}

.custom-file-label {
    color: #6c757d;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.custom-file-label.file-selected {
    color: #198754;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .custom-file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .custom-file-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .custom-file-label {
        margin-left: 0 !important;
        width: 100%;
    }
}
