:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
    --page-bg: #f6f8fb;
}

body {
    background: var(--page-bg);
    color: #172033;
}

.navbar {
    min-height: 66px;
}

.brand-icon,
.login-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf1ff;
    color: #2563eb;
    border-radius: 12px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    margin-right: 8px;
}

.page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.card {
    border-radius: 16px;
}

.form-control,
.input-group-text,
.btn {
    border-radius: 10px;
}

.form-control {
    border-color: #e1e6ef;
    padding: .65rem .8rem;
}

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .10);
    border-color: #8db0ff;
}

.search-box {
    position: relative;
}

.search-box > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8993a4;
    z-index: 2;
}

.search-box .form-control {
    padding-left: 44px;
    padding-right: 42px;
    background: #f8fafc;
}

.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8993a4;
    text-decoration: none;
}

.service-table thead th {
    color: #7b8494;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid #e9edf3;
    white-space: nowrap;
}

.service-table tbody td {
    padding-top: 15px;
    padding-bottom: 15px;
    border-color: #edf0f4;
}

.service-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f0f5ff;
    color: #2563eb;
}

.phone-link {
    color: #344054;
    text-decoration: none;
}

.phone-link:hover {
    color: #2563eb;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e9edf3;
}

.empty-state {
    text-align: center;
    padding: 55px 20px;
}

.empty-icon,
.delete-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.empty-icon {
    width: 66px;
    height: 66px;
    background: #eef3ff;
    color: #2563eb;
    font-size: 26px;
    margin-bottom: 15px;
}

.delete-icon {
    width: 58px;
    height: 58px;
    background: #fff0f0;
    color: #dc3545;
    font-size: 23px;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f4f7fb;
}

.auth-card {
    width: 100%;
    max-width: 410px;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 15px 45px rgba(20, 35, 60, .08);
}

.login-logo {
    width: 58px;
    height: 58px;
    font-size: 25px;
    margin-bottom: 14px;
}

.xsmall {
    font-size: .72rem;
}

@media (max-width: 767.98px) {
    .page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-head .btn {
        width: 100%;
    }

    .auth-card {
        padding: 28px 22px;
    }

    .service-table {
        min-width: 760px;
    }
}
