/* File upload component styles */
.drop-area {
    transition: all 0.2s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f8f9fa;
}

.drop-area:hover {
    background-color: #e9ecef;
    border-color: #0d6efd !important;
}

.drop-area.border-primary {
    border-color: #0d6efd !important;
}

.drop-area .drop-message {
    text-align: center;
}

.drop-area .bi-cloud-arrow-up {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.file-preview .list-group-item {
    padding: 0.5rem 1rem;
}

.drop-message > svg:nth-child(1) {
   height: 50px;
}

/* .file-preview .btn-outline-danger {
    padding: 0.25rem 0.5rem;
    line-height: 1;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
} */