/* Support Center / Ticket page styles */

.tk-hero {
    background: #f8f9fa;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.tk-hero-content {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.tk-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #337ab7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 16px;
}

.tk-hero-title {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 600;
}

.tk-hero-desc {
    margin: 0;
    color: #777;
}

.tk-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    color: #555;
}

.tk-card {
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tk-card .panel-heading {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px;
    border-radius: 8px 8px 0 0;
}

.tk-card .media {
    display: flex;
    align-items: center;
}

.tk-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f0f7ff;
    color: #337ab7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 12px;
}

.tk-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.tk-subject-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tk-subject-card {
    position: relative;
    border: 2px solid #e7e7e7;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    margin-bottom: 0;
}

.tk-subject-card:hover,
.tk-subject-card.active {
    border-color: #337ab7;
    box-shadow: 0 2px 8px rgba(51,122,183,0.15);
}

.tk-designradio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tk-subject-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f7ff;
    color: #337ab7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
}

.tk-subject-card.active .tk-subject-icon {
    background: #337ab7;
    color: #fff;
}

.tk-subject-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.tk-subject-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

.tk-field-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.tk-field-hint {
    font-weight: normal;
    color: #999;
    font-size: 12px;
}

.tk-admin-category-wrap {
    display: none !important;
}

#ticket-fields {
    margin-top: 15px;
}

#ticket-fields .form-group {
    margin-bottom: 15px;
}

#ticket-fields .form-group label {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
    color: #d9534f;
}

#ticket-fields .form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}

#ticket-fields .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

#ticket-fields .select2-container {
    width: 100% !important;
}

#ticket-fields .select2-selection {
    height: 40px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ticket-fields .select2-selection__arrow {
    top: 6px;
}

#tkOrderIdField,
#tkMessageField {
    margin-top: 15px;
}

#tkOrderIdField .form-control,
#tkMessageField .form-control {
    background: #fff;
    border: 1px solid #ccc;
    color: #555;
    border-radius: 4px;
}

#tkOrderIdField .form-control:focus,
#tkMessageField .form-control:focus {
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

#tkOrderIdField .tk-field-label,
#tkMessageField .control-label {
    color: #333;
}

.tk-telegram-card {
    background: #f0f7ff;
    border: 1px solid #d0e3f7;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.tk-telegram-text {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.tk-telegram-inline-icon {
    color: #337ab7;
    font-size: 18px;
    margin-right: 6px;
}

.tk-telegram-btn {
    background: #337ab7;
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.tk-telegram-btn:hover,
.tk-telegram-btn:focus {
    background: #286090;
    color: #fff;
    text-decoration: none;
}

.tk-guide-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.tk-guide-header {
    padding: 14px 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.tk-guide-header i:first-child {
    margin-right: 6px;
    color: #337ab7;
}

.tk-guide-arrow {
    transition: transform 0.2s;
}

.tk-guide-card.open .tk-guide-arrow {
    transform: rotate(180deg);
}

.tk-guide-body {
    display: none;
    padding: 16px;
    font-size: 14px;
    color: #555;
}

.tk-guide-card.open .tk-guide-body {
    display: block;
}

.tk-guide-subtitle {
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.tk-list-container {
    padding: 0;
}

.tk-list-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
}

.tk-list-item:last-child {
    border-bottom: none;
}

.tk-list-item:hover,
.tk-list-item:focus {
    text-decoration: none;
    background: #f9f9f9;
    color: #333;
}

.tk-list-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #337ab7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.tk-list-body {
    flex: 1;
    min-width: 0;
}

.tk-list-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tk-new-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9534f;
}

.tk-list-item--new .tk-list-title {
    color: #333;
}

.tk-list-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #777;
}

.tk-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.tk-status--pending {
    background: #f0ad4e;
    color: #fff;
}

.tk-status--answered {
    background: #5cb85c;
    color: #fff;
}

.tk-status--closed {
    background: #d9534f;
    color: #fff;
}

.tk-list-arrow {
    color: #aaa;
    margin-left: 8px;
    flex-shrink: 0;
}

.tk-empty {
    text-align: center;
    padding: 30px;
    color: #777;
}

.tk-empty-icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: #aaa;
}

.tk-success-alert {
    background: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

@media (max-width: 767px) {
    .tk-hero {
        padding: 16px !important;
        margin-bottom: 16px !important;
        border-radius: 8px !important;
    }
    .tk-hero-content {
        margin-bottom: 12px !important;
    }
    .tk-hero-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
        margin-right: 12px !important;
    }
    .tk-hero-title {
        font-size: 20px !important;
    }
    .tk-hero-desc {
        font-size: 13px !important;
    }
    .tk-hero-badges {
        flex-direction: row !important;
        gap: 6px !important;
    }
    .tk-hero-badge {
        padding: 4px 10px !important;
        font-size: 11px !important;
    }
    .tk-card .panel-body {
        padding: 12px !important;
    }
    .tk-subject-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    .tk-subject-card {
        padding: 10px !important;
        border-radius: 8px !important;
    }
    .tk-subject-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }
    .tk-subject-label {
        font-size: 12px !important;
    }
    .tk-subject-desc {
        font-size: 10px !important;
    }
    #ticket-fields .form-group label {
        font-size: 11px !important;
    }
    #ticket-fields .form-control,
    #ticket-fields .select2-selection {
        height: 40px !important;
    }
    #tkOrderIdField,
    #tkMessageField {
        margin-top: 12px !important;
    }
    .tk-telegram-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 12px !important;
        border-radius: 8px !important;
    }
    .tk-guide-card {
        margin-top: 16px !important;
        margin-bottom: 16px !important;
        border-radius: 8px !important;
    }
    .tk-guide-header {
        padding: 12px !important;
    }
    .tk-guide-body {
        padding: 12px !important;
    }
}

body {
    background-color: #f7f8fa;
}

/* Signin page */
.sn-signin-hero {
    text-align: center;
    padding: 10px 20px 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.sn-signin-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sn-signin-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #337ab7, #2a6496);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 14px rgba(51, 122, 183, 0.35);
}

.sn-signin-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.sn-signin-title span {
    color: #337ab7;
}

.sn-signin-subtitle {
    color: #777;
    margin: 4px 0 0;
    font-size: 14px;
}

.sn-signin-split {
    display: flex;
    align-items: stretch;
    padding: 24px;
    margin-top: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #edf6ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(51, 122, 183, 0.08);
}

.sn-signin-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.sn-signin-illustration {
    width: 100%;
    max-width: 480px;
    margin-top: 8px;
}

.sn-signin-illustration img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
}

.sn-signin-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.sn-signin-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(51, 122, 183, 0.08);
    padding: 24px;
    margin-bottom: 0;
    width: 100%;
}

.sn-signin-warning {
    background: transparent;
    border: none;
    color: #555;
    border-radius: 0;
    padding: 0 0 24px;
    margin-top: 30px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.sn-signin-warning .fa-exclamation-circle {
    color: #337ab7;
    margin-right: 6px;
}

.sn-signin-warning p {
    margin: 0 0 8px;
}

.sn-signin-warning p:last-child {
    margin-bottom: 0;
}

.sn-signin-warning a {
    color: #337ab7;
    text-decoration: underline;
    font-weight: 500;
}

.sn-signin-warning a:hover {
    color: #286090;
}

.sn-signin-warning .sn-reseller-link {
    color: #f0ad4e;
}

.sn-signin-warning .sn-reseller-link:hover {
    color: #ec971f;
}

.sn-signin-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.sn-signin-card-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.sn-signin-card-desc {
    color: #777;
    margin: 0;
    font-size: 14px;
}

.sn-signin-card-desc a {
    color: #337ab7;
    font-weight: 600;
}

.sn-signin-actions {
    margin-top: 24px;
}

.sn-signin-actions .btn-block,
.sn-signup-actions .btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #337ab7, #2a6496);
    border: none;
    box-shadow: 0 4px 12px rgba(51, 122, 183, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}

.sn-signin-actions .btn-block:hover,
.sn-signup-actions .btn-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(51, 122, 183, 0.35);
}

.sn-signin-google {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.sn-signin-footer-link {
    text-align: center;
    color: #777;
    margin-top: 16px;
    font-size: 14px;
}

.sn-signin-footer-link a {
    color: #337ab7;
    font-weight: 600;
}

.sn-signin-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    font-size: 14px;
    color: #555;
}

.sn-signin-channel i {
    color: #337ab7;
    font-size: 22px;
    margin-right: 8px;
}

.sn-signin-channel span {
    flex: 1 1 auto;
}

.sn-signin-channel .btn {
    background: #337ab7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
}

.sn-signin-channel .btn:hover {
    background: #286090;
}

.sn-signin-info {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.sn-signin-info-header h3 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.sn-signin-info-body p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: center;
}

.sn-signin-info-body p strong {
    color: #333;
}

.sn-signin-contact {
    text-align: center;
    margin-top: 24px;
}

.sn-signin-faq {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sn-signin-faq h2 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.sn-faq-item {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.sn-faq-item:last-child {
    border-bottom: none;
}

.sn-faq-question {
    font-weight: 600;
    color: #333;
    margin: 0 0 6px;
    font-size: 15px;
}

.sn-faq-answer {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.sn-signin-seo {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sn-signin-seo h2 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.sn-signin-seo p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
}

.sn-signin-seo p:last-child {
    margin-bottom: 0;
}

.sn-signin-seo strong {
    color: #333;
}

.sn-signin-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #337ab7;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.sn-signin-telegram-btn:hover,
.sn-signin-telegram-btn:focus {
    background: #286090;
    color: #fff;
    text-decoration: none;
}

.sn-signin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.sn-signin-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: #555;
    font-size: 14px;
    text-align: center;
}

.sn-signin-stat i {
    color: #337ab7;
    font-size: 24px;
    margin-bottom: 4px;
}

.sn-signin-stat-label {
    font-size: 13px;
    color: #777;
}

.sn-signin-stat strong {
    color: #333;
    font-size: 16px;
}

/* Signup page */
.sn-signup-hero {
    text-align: center;
    padding: 20px 20px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.sn-signup-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sn-signup-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #337ab7, #2a6496);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(51, 122, 183, 0.35);
}

.sn-signup-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.sn-signup-title span {
    color: #337ab7;
}

.sn-signup-subtitle {
    color: #777;
    margin: 6px 0 0;
    font-size: 16px;
}

.sn-signup-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 24px;
}

.sn-signup-card .form-control,
.sn-signin-card .form-control {
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background: #f8f9fa;
    padding: 12px 14px;
    height: auto;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-signup-card .form-control:focus,
.sn-signin-card .form-control:focus {
    border-color: #337ab7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.1);
}

.sn-signup-card .checkbox {
    font-size: 14px;
}

.sn-signup-actions {
    margin-top: 24px;
}


.sn-signup-google {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.sn-signup-footer-link {
    text-align: center;
    color: #777;
    margin-top: 16px;
    font-size: 14px;
}

.sn-signup-footer-link a {
    color: #337ab7;
    font-weight: 600;
}

/* New order page */
.sn-neworder-support {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.sn-neworder-support h5 {
    margin: 0;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.sn-neworder-support a {
    color: #337ab7;
    font-weight: 600;
    text-decoration: none;
}

.sn-neworder-support a:hover {
    color: #286090;
}

.sn-neworder-support i {
    margin-left: 6px;
}

.sn-neworder-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 24px;
}

.sn-neworder-card .form-control {
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background: #f8f9fa;
    padding: 12px 14px;
    height: auto;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-neworder-card .form-control:focus {
    border-color: #337ab7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.1);
}

.sn-neworder-card .control-label {
    font-weight: 500;
    color: #555;
}

.sn-neworder-card .terms {
    font-weight: 400;
    font-size: 14px;
}

.sn-neworder-submit {
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #337ab7, #2a6496);
    border: none;
    box-shadow: 0 4px 12px rgba(51, 122, 183, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}

.sn-neworder-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(51, 122, 183, 0.35);
}

.sn-neworder-note {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
    .sn-signup-brand,
    .sn-signin-brand {
        flex-direction: column;
        gap: 12px;
    }
    .sn-signup-logo,
    .sn-signin-logo {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .sn-signup-title {
        font-size: 26px;
    }
    .sn-signin-hero,
    .sn-signup-hero {
        padding: 10px 15px 10px;
    }
    .sn-signin-split {
        flex-direction: column;
        padding: 20px;
    }
    .sn-signin-left,
    .sn-signin-right {
        width: 100%;
    }
    .sn-signin-left {
        margin-bottom: 20px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .sn-signin-card {
        padding: 20px;
    }
    .sn-signin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px;
    }
    .sn-signin-channel {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .sn-signin-channel i {
        margin-right: 0;
    }
    .sn-signin-info {
        padding: 20px;
    }
    .sn-signin-faq {
        padding: 20px;
    }
    .sn-signin-faq h2 {
        font-size: 20px;
    }
    .sn-signin-seo {
        padding: 20px;
    }
    .sn-signin-seo h2 {
        font-size: 18px;
    }
    .sn-signin-illustration {
        max-width: 300px;
    }
    .sn-signin-illustration img {
        max-height: 200px;
    }
    .sn-signin-title {
        font-size: 22px;
    }
    .sn-signin-subtitle {
        font-size: 13px;
    }
    .sn-signin-card {
        padding: 20px;
        margin-bottom: 24px;
    }
    .sn-signin-card .form-control,
    .sn-signup-card .form-control {
        padding: 12px;
        height: auto;
        font-size: 16px;
    }
    .sn-signin-actions .btn-block,
    .sn-signup-actions .btn-block {
        padding: 14px;
        font-size: 16px;
    }
    .sn-signin-stats {
        flex-direction: column;
        gap: 10px;
        padding: 12px 0;
        margin-bottom: 24px;
    }
    .sn-signin-stat {
        justify-content: center;
        width: 100%;
        padding: 0;
    }
    .sn-signin-warning {
        font-size: 13px;
        padding: 0 0 16px;
        margin-bottom: 16px;
    }
    .sn-signin-channel {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 0 16px;
        margin-bottom: 16px;
    }
    .sn-signin-info {
        padding: 0 0 16px;
        margin-bottom: 24px;
    }
    .sn-signin-info-header h3 {
        font-size: 18px;
    }
    .sn-signin-info-body p {
        font-size: 14px;
    }
    .sn-neworder-card {
        padding: 20px;
    }
    .sn-neworder-submit {
        padding: 14px;
        font-size: 16px;
    }
}

/* Orders page */
.sn-orders-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    list-style: none;
}

.sn-orders-toolbar > li {
    float: none;
    display: flex;
    flex: 0 0 auto;
    margin: 0;
}

.sn-orders-toolbar .search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 400px;
    order: -1;
}

.sn-orders-toolbar .input-group {
    display: flex;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
}

.sn-orders-toolbar .input-group .form-control {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    box-shadow: none;
}

.sn-orders-toolbar .input-group .input-group-btn {
    display: flex;
    flex: 0 0 auto;
}

.sn-orders-toolbar .input-group .input-group-btn .btn {
    background: #337ab7;
    color: #fff;
    border: none;
    padding: 8px 14px;
}

.sn-orders-toolbar > li > a {
    display: block;
    padding: 8px 14px;
    color: #555;
    font-weight: 500;
    border-radius: 50px;
    background: #f5f5f5;
    text-decoration: none;
}

.sn-orders-toolbar > li.active > a,
.sn-orders-toolbar > li > a:hover {
    background: #337ab7;
    color: #fff;
}

.sn-orders-table-wrapper {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.sn-orders-table {
    margin-bottom: 0;
}

.sn-orders-table thead {
    background: #337ab7;
    color: #fff;
}

.sn-orders-table thead th {
    border: none;
    font-weight: 600;
    font-size: 13px;
    padding: 14px;
    vertical-align: middle;
    white-space: nowrap;
}

.sn-orders-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.sn-orders-table tbody tr:last-child {
    border-bottom: none;
}

.sn-orders-table tbody tr:hover {
    background: #f8f9fa;
}

.sn-orders-table td {
    padding: 14px;
    font-size: 14px;
    vertical-align: middle;
    color: #555;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sn-orders-table td a {
    color: #337ab7;
}

.sn-orders-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.sn-orders-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.sn-orders-pagination > li {
    display: inline-flex;
}

.sn-orders-pagination > li > a,
.sn-orders-pagination > li > span {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    color: #555;
    background: #fff;
    text-decoration: none;
}

.sn-orders-pagination > li.active > a,
.sn-orders-pagination > li > a:hover {
    background: #337ab7;
    border-color: #337ab7;
    color: #fff;
}

@media (max-width: 767px) {
    .sn-orders-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    .sn-orders-toolbar .search,
    .sn-orders-toolbar > li {
        width: 100%;
        max-width: none;
        margin-left: 0;
        flex: 1 1 100%;
    }

    .sn-orders-toolbar .input-group,
    .sn-orders-toolbar .btn {
        width: 100%;
    }

    .sn-orders-toolbar > li > a {
        text-align: center;
    }

    .sn-orders-table,
    .sn-orders-table thead,
    .sn-orders-table tbody,
    .sn-orders-table th,
    .sn-orders-table td,
    .sn-orders-table tr {
        display: block;
    }

    .sn-orders-table thead tr {
        display: none;
    }

    .sn-orders-table tbody tr {
        margin-bottom: 12px;
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .sn-orders-table td {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .sn-orders-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
    }

    .sn-orders-table td > * {
        min-width: 0;
    }

    .sn-orders-table td:last-child {
        border-bottom: none;
    }

    .sn-orders-actions {
        justify-content: flex-end;
    }
}

/* Addfunds page */
.sn-addfunds-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 24px;
}

.sn-addfunds-card .form-control {
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    background: #f8f9fa;
    padding: 12px 14px;
    height: auto;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-addfunds-card .form-control:focus {
    border-color: #337ab7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.1);
}

.sn-addfunds-card .control-label {
    font-weight: 500;
    color: #555;
}

.sn-addfunds-submit {
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #337ab7, #2a6496);
    border: none;
    box-shadow: 0 4px 12px rgba(51, 122, 183, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}

.sn-addfunds-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(51, 122, 183, 0.35);
}

.sn-addfunds-info {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sn-addfunds-table-wrapper {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.sn-addfunds-table {
    margin-bottom: 0;
}

.sn-addfunds-table thead {
    background: #337ab7;
    color: #fff;
}

.sn-addfunds-table thead th {
    border: none;
    font-weight: 600;
    font-size: 13px;
    padding: 14px;
    vertical-align: middle;
    white-space: nowrap;
}

.sn-addfunds-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.sn-addfunds-table tbody tr:last-child {
    border-bottom: none;
}

.sn-addfunds-table tbody tr:hover {
    background: #f8f9fa;
}

.sn-addfunds-table td {
    padding: 14px;
    font-size: 14px;
    vertical-align: middle;
    color: #555;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sn-addfunds-table td a {
    color: #337ab7;
}

.sn-addfunds-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.sn-addfunds-pagination > li {
    display: inline-flex;
}

.sn-addfunds-pagination > li > a,
.sn-addfunds-pagination > li > span {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    color: #555;
    background: #fff;
    text-decoration: none;
}

.sn-addfunds-pagination > li.active > a,
.sn-addfunds-pagination > li > a:hover {
    background: #337ab7;
    border-color: #337ab7;
    color: #fff;
}

@media (max-width: 767px) {
    .sn-addfunds-card {
        padding: 20px;
    }
    .sn-addfunds-submit {
        padding: 14px;
        font-size: 16px;
    }
    .sn-addfunds-table,
    .sn-addfunds-table thead,
    .sn-addfunds-table tbody,
    .sn-addfunds-table th,
    .sn-addfunds-table td,
    .sn-addfunds-table tr {
        display: block;
    }
    .sn-addfunds-table thead tr {
        display: none;
    }
    .sn-addfunds-table tbody tr {
        margin-bottom: 12px;
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }
    .sn-addfunds-table td {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .sn-addfunds-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
    }
    .sn-addfunds-table td > * {
        min-width: 0;
    }
    .sn-addfunds-table td:last-child {
        border-bottom: none;
    }
    .sn-addfunds-table td.text-right {
        text-align: left;
    }
}

/* Public footer */
.sn-footer {
    background: #e9ecef;
    border-top: 1px solid #dee2e6;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.sn-footer-inner {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sn-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.sn-footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #337ab7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sn-footer-brand-text {
    display: flex;
    flex-direction: column;
}

.sn-footer-brand-text strong {
    font-size: 18px;
    color: #333;
}

.sn-footer-brand-text span {
    font-size: 13px;
    color: #777;
}

.sn-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    justify-content: center;
}

.sn-footer-links a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.sn-footer-links a:hover {
    color: #337ab7;
}

.sn-footer-disclaimer {
    text-align: center;
    margin: 16px 0;
    color: #888;
    font-size: 12px;
    line-height: 1.5;
}

.sn-footer-disclaimer p {
    margin: 0;
}

.sn-footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
    color: #777;
    font-size: 13px;
}

@media (max-width: 767px) {
    .sn-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Public navbar redesign */
.sn-navbar-public {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    max-width: 1200px;
    margin: 16px auto;
    padding: 6px 20px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.sn-navbar-public .container {
    width: 100%;
    max-width: 1200px;
}

.sn-navbar-public .navbar-brand {
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
}

.sn-navbar-public .navbar-brand img {
    max-height: 46px;
    width: auto;
}

.sn-navbar-public .navbar-toggle {
    margin-top: 8px;
    margin-bottom: 8px;
    border-color: #e7e7e7;
    border-radius: 8px;
}

.sn-navbar-public .navbar-toggle .icon-bar {
    background-color: #337ab7;
}

.sn-navbar-public .navbar-nav > li > a {
    padding: 8px 14px;
    color: #555;
    font-weight: 500;
    border-radius: 50px;
    margin: 0 2px;
}

.sn-navbar-public .navbar-nav > li > a:hover,
.sn-navbar-public .navbar-nav > li > a:focus {
    color: #337ab7;
    background-color: #f5f5f5;
}

.sn-navbar-public .navbar-nav > .active > a,
.sn-navbar-public .navbar-nav > .active > a:hover,
.sn-navbar-public .navbar-nav > .active > a:focus {
    color: #337ab7;
    background-color: #eef6fc;
}

.sn-navbar-public .sn-navbar-cta .btn {
    border-radius: 50px;
    padding: 8px 20px;
    background: #337ab7;
    border-color: #337ab7;
    color: #fff;
    font-weight: 500;
}

.sn-navbar-public .sn-navbar-cta .btn:hover {
    background: #286090;
    border-color: #286090;
}

@media (min-width: 768px) {
    .sn-navbar-public .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sn-navbar-public .navbar-header {
        float: none;
        flex: 0 0 auto;
    }

    .sn-navbar-public .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex: 1 1 auto;
        padding-left: 20px;
    }

    .sn-navbar-public .navbar-left-block {
        float: none;
        flex: 0 0 auto;
    }

    .sn-navbar-public .navbar-center {
        float: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1 1 auto;
        margin: 0;
    }

    .sn-navbar-public .navbar-right {
        float: none;
        flex: 0 0 auto;
        margin: 0;
    }

    .sn-navbar-public .navbar-nav > li {
        float: none;
    }

    .sn-navbar-public .sn-navbar-cta {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .sn-navbar-public {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 0 15px;
    }

    .sn-navbar-public .navbar-nav .open .dropdown-menu > li > a {
        color: #555;
    }

    .sn-navbar-public .sn-navbar-cta {
        margin-left: 0;
    }

    .sn-navbar-public .sn-navbar-cta .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

/* Authenticated navbar redesign */
.sn-navbar-authenticated {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.sn-navbar-authenticated .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sn-navbar-authenticated .navbar-brand {
    padding: 12px 15px;
    height: auto;
    display: flex;
    align-items: center;
}

.sn-navbar-authenticated .navbar-brand img {
    max-height: 46px;
    width: auto;
}

.sn-navbar-authenticated .navbar-icon {
    margin-right: 6px;
    font-size: 0.9em;
}

.sn-navbar-authenticated .navbar-toggle {
    border-color: #e7e7e7;
    margin-top: 10px;
}

.sn-navbar-authenticated .navbar-toggle .icon-bar {
    background-color: #337ab7;
}

.sn-navbar-authenticated .navbar-nav > li > a {
    padding: 18px 14px;
    color: #555;
    font-weight: 500;
    border-radius: 50px;
    margin: 0 2px;
}

.sn-navbar-authenticated .navbar-nav > li > a:hover,
.sn-navbar-authenticated .navbar-nav > li > a:focus {
    color: #337ab7;
    background-color: #f5f5f5;
}

.sn-navbar-authenticated .navbar-nav > .active > a,
.sn-navbar-authenticated .navbar-nav > .active > a:hover,
.sn-navbar-authenticated .navbar-nav > .active > a:focus {
    color: #337ab7;
    background-color: #eef6fc;
}

.sn-navbar-authenticated .navbar-right-block .badge {
    background: #337ab7;
    color: #fff;
    border-radius: 50px;
    padding: 6px 12px;
    font-weight: 500;
}

.sn-navbar-authenticated .dropdown-menu {
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .sn-navbar-authenticated .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sn-navbar-authenticated .navbar-header {
        float: none;
        flex: 0 0 auto;
    }

    .sn-navbar-authenticated .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex: 1 1 auto;
    }

    .sn-navbar-authenticated .navbar-left-block,
    .sn-navbar-authenticated .navbar-right-block {
        float: none;
        display: flex;
        align-items: center;
        margin: 0;
    }

    .sn-navbar-authenticated .navbar-nav > li {
        float: none;
    }

    .sn-navbar-authenticated .navbar-nav > li > a {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .sn-navbar-authenticated {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .sn-navbar-authenticated .navbar-nav > li > a {
        padding: 12px 14px;
    }

    .sn-navbar-authenticated .navbar-right-block .badge {
        display: inline-block;
        margin-bottom: 4px;
    }
}

/* Services page redesign */
.sn-services-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    list-style: none;
}

.sn-services-toolbar > li {
    float: none;
    display: flex;
    flex: 0 0 auto;
    margin: 0;
}

.sn-services-toolbar .search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 400px;
}

.sn-services-toolbar .input-group {
    display: flex;
    width: 100%;
    max-width: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .sn-services-toolbar .search {
        min-width: 240px;
    }

    .sn-services-toolbar .input-group {
        min-width: 260px;
    }
}

.sn-services-toolbar .input-group .form-control {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    border: none;
    box-shadow: none;
}

.sn-services-toolbar .input-group .input-group-btn {
    display: flex;
    flex: 0 0 auto;
}

.sn-services-toolbar .input-group .input-group-btn .btn {
    background: #337ab7;
    color: #fff;
    border: none;
    padding: 8px 14px;
}

.sn-services-toolbar .input-group .input-group-btn .btn:hover {
    background: #286090;
}

.sn-services-toolbar .dropdown,
.sn-services-toolbar .btn {
    width: 100%;
}

.sn-services-toolbar .btn-primary {
    background: #337ab7;
    border-color: #337ab7;
}

.sn-services-toolbar .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

.sn-services-table {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sn-services-table thead {
    background: #337ab7;
    color: #fff;
}

.sn-services-table thead th {
    border: none;
    font-weight: 600;
    font-size: 13px;
    padding: 14px;
    vertical-align: middle;
}

.sn-services-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.sn-services-table tbody tr:last-child {
    border-bottom: none;
}

.sn-services-table tbody tr:hover {
    background: #f8f9fa;
}

.sn-services-table td {
    padding: 14px;
    font-size: 14px;
    vertical-align: middle;
}

.sn-services-table .service-name {
    font-weight: 500;
    color: #333;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sn-services-table .favorite-active {
    color: #f0ad4e;
}

.sn-services-table .btn-xs {
    border-radius: 6px;
}

/* Category headers */
.sn-services-table .category-row td {
    background: #eaf4fc;
    color: #333;
    border: none;
    font-weight: 700;
    padding: 14px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.sn-services-table .category-row td img,
.sn-services-table .category-row td [class*="fa"],
.sn-services-table .category-row td span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.sn-services-table .category-row td strong {
    font-weight: 700;
}

/* Service ID bold */
.sn-services-table td[data-filter-table-service-id] {
    font-weight: 700;
    color: #337ab7;
}

@media (max-width: 767px) {
    .sn-services-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding: 10px !important;
    }

    .sn-services-toolbar .search,
    .sn-services-toolbar > li {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        flex: 1 1 100% !important;
    }

    .sn-services-toolbar .input-group,
    .sn-services-toolbar .dropdown,
    .sn-services-toolbar .btn {
        width: 100% !important;
        min-width: 0 !important;
    }

    .sn-services-table {
        max-width: 100%;
        min-width: 0;
    }

    .sn-services-table,
    .sn-services-table thead,
    .sn-services-table tbody,
    .sn-services-table th,
    .sn-services-table td,
    .sn-services-table tr {
        display: block;
    }

    .sn-services-table thead {
        display: none;
    }

    .sn-services-table tbody tr {
        margin-bottom: 12px;
        background: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .sn-services-table td {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .sn-services-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
    }

    .sn-services-table td > * {
        min-width: 0;
    }

    .sn-services-table td:last-child {
        border-bottom: none;
    }

    .sn-services-table .category-row > td {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 8px;
        font-weight: 700;
        padding: 12px;
        margin-bottom: 8px;
        border: none;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-align: center;
    }

    .sn-services-table td:empty {
        display: none;
    }
}

