/* ============================================================
   SALES/SUPPORT — RECENT MEDICAL APPROVED TABLE
   Consistent with Signups Module
============================================================ */

.androlab-medical-approved {
    margin-top: 25px;
    width: 100%;
    font-family: inherit;
}

/* ==========================
   Header Filters
========================== */
.ss-table-header {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    align-items: center;
}

.ss-table-header select,
.ss-table-header input[type="text"] {
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    min-width: 120px;
}

/* ==========================
   Table Styling
========================== */
.ss-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
}

.ss-table thead th {
    background: #f7f7f7;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.ss-table tbody td {
    padding: 10px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.ss-table tbody tr:hover {
    background: #fafafa;
}

/* ==========================
   Pagination
========================== */
.ss-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.ss-pagination button {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 14px;
}

.ss-pagination button:hover {
    background: #e7e7e7;
}

#ma-page-info {
    font-size: 14px;
    font-weight: 600;
}

/* ==========================
   Tooltip (long text)
========================== */
.tooltip {
    color: #d9534f;
    cursor: help;
    border-bottom: 1px dotted #d9534f;
}

.tooltip:hover {
    color: #c9302c;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 900px) {

    .ss-table-header {
        flex-direction: column;
        align-items: stretch;
    }

    .ss-table-header select,
    .ss-table-header input {
        width: 100%;
    }

    .ss-pagination {
        justify-content: space-between;
    }
}
