/* FILTER FORM */
.dbdsf-filter-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.dbdsf-filter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.dbdsf-filter select,
.dbdsf-filter input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 14px;
}

.dbdsf-filter button {
    padding: 10px 14px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.dbdsf-filter button:hover {
    background: #1b5f96;
}

/* TABLE */
.dbdsf-table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.dbdsf-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.dbdsf-table th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    background: #f6f7f7;
    border-bottom: 1px solid #dcdcde;
}

.dbdsf-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #e5e5e5;
}

.dbdsf-table a {
    color: #2271b1;
    text-decoration: none;
}

.dbdsf-table a:hover {
    text-decoration: underline;
}

.dbdsf-no-results {
    padding: 16px;
    background: #fff3f3;
    border: 1px solid #ffd6d6;
    border-radius: 4px;
    color: #8a1f11;
}

/* MOBILE */
@media (max-width: 768px) {
    .dbdsf-filter {
        grid-template-columns: 1fr;
    }
    .dbdsf-table th,
    .dbdsf-table td {
        padding: 10px;
        font-size: 13px;
    }
}
