/*

Styling for Feature Drift Monitoring Page

*/

/* Styling for alternating row colors */
.fd-table-row-odd {
    background-color: #f9f9f9;
}

.fd-table-row-even {
    background-color: #ffffff;
}
/* Styling for collapsed content */
.fd-collapse {
    transition: height 0.3s ease;
}

.fd-collapse.show {
    height: auto;
}

/* General table styling */
.fd-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.fd-table th,
.fd-table td {
    padding: 10px 15px;
}

.fd-table thead th {
    background-color: #f2f2f2;
    border-bottom: 1px solid #dee2e6;
}

.fd-table tbody tr:last-child td {
    border-bottom: none;
}

/* Card styling */
.fd-card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fd-card .card-header.fd-card-header {
    background-color: #f2f2f2;
    border-bottom: none;
    font-weight: bold;
}

.fd-card .card-body.fd-card-body {
    padding: 20px;
}

/* Overriding specific styles */
.fd-card .card-header.fd-card-header-override {
    background-color: #ee0505;
    border-bottom: none;
    font-weight: bold;
}