/* ==============================
   GLOBAL WRAPPER
================================ */
.services-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* ==============================
   SECTION TITLE
================================ */
.section-title {
    margin-bottom: 20px;
    font-weight: 700;
}

/* ==============================
   SEARCH
================================ */
.service-search-container {
    position: relative;
    margin-top: 20px;
}

.service-search-input {
    padding: 10px 15px;
    font-size: 16px;
}

/* ==============================
   TABS (LEFT SIDE)
================================ */
.services-tabs {
    width: 100%;
}

.services-tabs .nav-link {
    width: 100%;
    text-align: left;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #333333;
    padding: 12px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover state */
.services-tabs .nav-link:hover {
    background-color: #f5f5f5;
}

/* Active tab */
.services-tabs .nav-link.active {
    background-color: #51b07e;
    color: #ffffff;
    border-color: #51b07e;
}

/* ==============================
   TAB CONTENT VISIBILITY
================================ */

/* Hide all panes by default */
.tab-pane {
    display: none;
}

/* Show only active pane */
.tab-pane.active.show {
    display: block;
}

/* ==============================
   SERVICE CONTENT PANEL
================================ */
.service-table-container {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 6px;
}

/* ==============================
   MAIN TABLE
================================ */
.service-table {
    width: 100%;
    border-collapse: collapse;
}

.service-table tr td {
    border: 1px solid #e1e1e1;
    padding: 10px;
    vertical-align: top;
}

.service-table tr td:first-child {
    width: 35%;
    font-weight: 600;
    background-color: #f9f9f9;
}

/* ==============================
   SUB TABLES (CHECKBOX GROUPS)
================================ */
.sub-table {
    width: 100%;
    border-collapse: collapse;
}

.sub-table td {
    border: none;
    padding: 6px 10px;
    vertical-align: middle;
}

/* Checkbox spacing */
.sub-table input[type="checkbox"] {
    margin-right: 8px;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .services-tabs .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .service-table tr td:first-child {
        width: 45%;
    }
}