/* Downloads Table Styling */
.custom-downloads-table thead th {
    background-color: #f8fdfc;
    border: none;
    padding: 15px;
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-teal-soft {
    background-color: rgba(0, 167, 158, 0.1);
}

/* Hover effect for buttons */
.btn-teal {
    background-color: #00A79E;
    color: white;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-teal:hover {
    background-color: #008f88;
    color: white;
    transform: translateY(-1px);
}

/* Mobile Card Styling */
.download-card {
    border: 1px solid #eee !important;
}

.download-card h6 {
    font-size: 0.95rem;
}

/* Empty State Border */
.border-dashed {
    border-style: dashed !important;
    border-width: 2px !important;
}