/* ===== Source Code Tool ===== */

.sct-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1a56a0 100%);
    padding: 60px 0 50px;
    color: #fff;
}
.sct-hero h1 { font-size: 2.1rem; font-weight: 700; margin-bottom: 10px; }
.sct-hero p  { font-size: 1rem; opacity: .8; max-width: 560px; margin: 0 auto; }

/* Card */
.sct-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0px 8px rgba(0,0,0,.10);
    padding: 34px;
    position: relative;
    z-index: 2;
}

/* Label / Input */
.sct-label { font-size: .8rem; font-weight: 600; color: #64748b; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; display: block; }

.sct-input-wrap { display: flex; gap: 10px; align-items: stretch; }

.sct-input {
    flex: 1;
    border: 1.5px solid #e2e8f0; border-radius: 5px;
    padding:8px 16px; font-size: .97rem; color: #1e293b;
    background: #f8fafc; outline: none; transition: border-color .2s;
}
.sct-input:focus { border-color: #2563eb; background: #fff; }

/* Error */
.sct-error {
    display: none; margin-top: 12px; padding: 11px 16px;
    background: #fef2f2; border: 1px solid #fecaca;
    border-radius: 8px; color: #dc2626; font-size: .9rem;
}

/* Loader */
.sct-loader {
    display: none; align-items: center; gap: 12px;
    margin-top: 18px; padding: 13px 18px;
    background: #eff6ff; border-radius: 10px;
    color: #2563eb; font-size: .93rem; font-weight: 500;
}
.sct-spinner {
    width: 20px; height: 20px;
    border: 2.5px solid #bfdbfe; border-top-color: #2563eb;
    border-radius: 50%; animation: sct-spin .7s linear infinite; flex-shrink: 0;
}
@keyframes sct-spin { to { transform: rotate(360deg); } }

/* Results wrapper */
.sct-results { display: none; margin-top: 24px; }

/* Status bar */
.sct-statusbar {
    display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
    padding: 10px 16px; background: #f8fafc;
    border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 16px;
    font-size: .83rem; color: #475569;
}
.sct-status-pill { font-weight: 600; }
.sct-status-pill.sct-ok       { color: #16a34a; }
.sct-status-pill.sct-redirect { color: #d97706; }
.sct-status-pill.sct-err      { color: #dc2626; }
.sct-stat { display: flex; align-items: center; gap: 5px; }
.sct-stat i { color: #94a3b8; }

/* Tabs */
.sct-tabs {
    display: flex; gap: 4px;
    border-bottom: 2px solid #e2e8f0; margin-bottom: 20px;
}
.sct-tab {
    padding: 9px 18px; border: none; background: none;
    font-size: .88rem; font-weight: 600; color: #64748b;
    cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; display: flex; align-items: center; gap: 6px;
    transition: color .2s;
}
.sct-tab:hover { color: #2563eb; }
.sct-tab.active { color: #2563eb; border-bottom-color: #2563eb; }

/* Panels */
.sct-panel { display: none; }
.sct-panel.active { display: block; }

/* Source panel toolbar */
.sct-output-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; flex-wrap: wrap; gap: 8px;
}
.sct-output-title {
    font-size: .93rem; font-weight: 600; color: #1e293b;
    display: flex; align-items: center; gap: 7px;
}
.sct-output-title i { color: #2563eb; }
.sct-meta { font-size: .77rem; color: #94a3b8; font-weight: 400; }

.sct-actions { display: flex; gap: 8px; }

.sct-copy-btn, .sct-download-btn {
    height: 34px; padding: 0 14px; border-radius: 8px;
    font-size: .82rem; font-weight: 600; cursor: pointer; border: none;
    display: flex; align-items: center; gap: 6px; transition: opacity .2s;
}
.sct-copy-btn     { background: #ecfdf5; color: #059669; border: 1.5px solid #6ee7b7; }
.sct-copy-btn:hover { background: #d1fae5; }
.sct-download-btn { background: #eff6ff; color: #2563eb; border: 1.5px solid #bfdbfe; }
.sct-download-btn:hover { background: #dbeafe; }

/* Code viewer */
.sct-code-wrap {
    position: relative; background: #0f172a;
    border-radius: 12px; overflow: hidden;
}
.sct-code-wrap::before {
    content: ''; position: absolute; top: 13px; left: 14px;
    width: 10px; height: 10px; background: #ef4444; border-radius: 50%;
    box-shadow: 18px 0 0 #f59e0b, 36px 0 0 #22c55e; z-index: 1;
}
.sct-code-area {
    width: 100%; height: 420px; background: transparent;
    color: #e2e8f0; font-family: 'Fira Code','Courier New',monospace;
    font-size: .82rem; line-height: 1.65; border: none; outline: none;
    resize: vertical; padding: 44px 20px 20px;
    white-space: pre; overflow: auto;
}

/* Meta / Headers panels */
.sct-meta-grid { display: flex; flex-direction: column; gap: 20px; }

.sct-meta-card {
    border: 1.5px solid #e2e8f0; border-radius: 12px; overflow: hidden;
}
.sct-meta-card-title {
    background: #f8fafc; padding: 11px 18px;
    font-size: .85rem; font-weight: 700; color: #1e293b;
    display: flex; align-items: center; gap: 8px; border-bottom: 1.5px solid #e2e8f0;
}
.sct-meta-card-title i { color: #2563eb; }

.sct-meta-row {
    display: flex; padding: 10px 18px; border-bottom: 1px solid #f1f5f9;
    font-size: .87rem; align-items: flex-start; gap: 16px;
}
.sct-meta-row:last-child { border-bottom: none; }
.sct-meta-key { min-width: 100px; font-weight: 600; color: #475569; flex-shrink: 0; }
.sct-meta-val { color: #1e293b; word-break: break-word; }

/* Table */
.sct-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.sct-table thead th {
    background: #f1f5f9; padding: 9px 16px;
    text-align: left; font-weight: 700; color: #475569;
    font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
}
.sct-table tbody tr { border-bottom: 1px solid #f1f5f9; }
.sct-table tbody tr:last-child { border-bottom: none; }
.sct-table tbody tr:hover { background: #f8fafc; }
.sct-table td { padding: 9px 16px; vertical-align: top; word-break: break-word; color: #334155; }
.sct-tag-name {
    display: inline-block; background: #eff6ff; color: #2563eb;
    border-radius: 5px; padding: 2px 8px; font-size: .78rem;
    font-weight: 600; font-family: monospace;
}
.sct-empty { padding: 14px 18px; color: #94a3b8; font-size: .88rem; margin: 0; }
.sct-headers-table-wrap .sct-meta-card { margin: 0; }

/* How to use */
.sct-steps { padding: 60px 0; background: #f8fafc; }
.sct-steps h2 { font-size: 1.7rem; font-weight: 700; color: #1e293b; text-align: center; margin-bottom: 36px; }
.sct-step-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 22px; }
.sct-step-box { background: #fff; border-radius: 14px; padding: 26px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.sct-step-num {
    width: 44px; height: 44px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; margin-bottom: 12px;
}
.sct-step-box h4 { font-size: .95rem; font-weight: 600; color: #1e293b; margin-bottom: 5px; }
.sct-step-box p  { font-size: .84rem; color: #64748b; margin: 0; }

/* FAQ */
.sct-faq { padding: 60px 0; }
.sct-faq h2 { font-size: 1.7rem; font-weight: 700; color: #1e293b; text-align: center; margin-bottom: 36px; }
.sct-faq .accordion-item { border: 1.5px solid #e2e8f0; border-radius: 12px !important; margin-bottom: 12px; overflow: hidden; }
.sct-faq .accordion-button { font-weight: 600; font-size: .93rem; color: #1e293b; background: #fff; }
.sct-faq .accordion-button:not(.collapsed) { color: #2563eb; background: #eff6ff; box-shadow: none; }
.sct-faq .accordion-button:focus { box-shadow: none; }
.sct-faq .accordion-body { font-size: .88rem; color: #475569; line-height: 1.7; }

/* Responsive */
@media (max-width: 576px) {
    .sct-hero h1 { font-size: 1.55rem; }
    .sct-card { padding: 20px 14px 16px; margin-top: -20px; }
    .sct-input-wrap { flex-direction: column; }
    .sct-btn { height: 44px; width: 100%; justify-content: center; }
    .sct-code-area { height: 280px; }
    .sct-tab { padding: 8px 12px; font-size: .82rem; }
}

/* ===== Schema Tab ===== */
.sct-schema-type { color: #7c3aed; font-weight: 700; }
.sct-warn-text   { color: #d97706; padding: 12px 18px; }

.sct-schema-raw {
    background: #0f172a; border-radius: 0 0 10px 10px;
    overflow: auto; max-height: 340px;
}
.sct-schema-raw pre {
    margin: 0; padding: 18px 20px;
    color: #a5f3fc; font-family: 'Fira Code','Courier New',monospace;
    font-size: .8rem; line-height: 1.6; white-space: pre-wrap; word-break: break-word;
}

/* ===== SEO Audit Tab ===== */
.sct-audit-summary {
    display: flex; align-items: center; gap: 28px;
    padding: 20px 24px; background: #fff;
    border: 1.5px solid #e2e8f0; border-radius: 14px;
    margin-bottom: 18px; flex-wrap: wrap;
}

.sct-audit-score {
    font-size: 2.8rem; font-weight: 800; line-height: 1;
    min-width: 80px; text-align: center;
}
.sct-audit-score span { font-size: 1rem; font-weight: 500; opacity: .6; }
.sct-score-good { color: #16a34a; }
.sct-score-warn { color: #d97706; }
.sct-score-bad  { color: #dc2626; }

.sct-audit-counts { display: flex; flex-direction: column; gap: 6px; }
.sct-audit-pass, .sct-audit-warn, .sct-audit-fail {
    font-size: .88rem; font-weight: 600;
    display: flex; align-items: center; gap: 7px;
}
.sct-audit-pass { color: #16a34a; }
.sct-audit-warn { color: #d97706; }
.sct-audit-fail { color: #dc2626; }

/* Audit rows */
.sct-audit-row {
    display: flex; gap: 14px; padding: 13px 18px;
    border-bottom: 1px solid #f1f5f9; align-items: flex-start;
}
.sct-audit-row:last-child { border-bottom: none; }
.sct-audit-row.sct-audit-pass { border-left: 3px solid #16a34a; }
.sct-audit-row.sct-audit-warn { border-left: 3px solid #d97706; }
.sct-audit-row.sct-audit-fail { border-left: 3px solid #dc2626; }

.sct-audit-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.sct-i-pass { color: #16a34a; }
.sct-i-warn { color: #d97706; }
.sct-i-fail { color: #dc2626; }

.sct-audit-body { flex: 1; }
.sct-audit-label  { font-weight: 700; font-size: .9rem; color: #1e293b; margin-bottom: 2px; }
.sct-audit-value  { font-size: .83rem; color: #475569; margin-bottom: 3px; word-break: break-word; }
.sct-audit-detail { font-size: .8rem; color: #94a3b8; }

/* ===== Badges (Internal / External) ===== */
.sct-badge {
    display: inline-block; padding: 2px 9px; border-radius: 20px;
    font-size: .74rem; font-weight: 700; letter-spacing: .03em;
}
.sct-badge-ext { background: #fef3c7; color: #92400e; }
.sct-badge-int { background: #dcfce7; color: #166534; }
.sct-no-alt    { color: #dc2626; font-size: .8rem; font-weight: 600; }

/* ===== Resources sub-tabs ===== */
.sct-res-tabs {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 16px;
}
.sct-res-tab {
    padding: 7px 14px; border: 1.5px solid #e2e8f0;
    border-radius: 8px; background: #f8fafc;
    font-size: .82rem; font-weight: 600; color: #64748b;
    cursor: pointer; display: flex; align-items: center; gap: 6px;
    transition: all .15s;
}
.sct-res-tab:hover  { border-color: #2563eb; color: #2563eb; background: #eff6ff; }
.sct-res-tab.active { border-color: #2563eb; color: #2563eb; background: #eff6ff; }

.sct-res-badge {
    background: #2563eb; color: #fff;
    border-radius: 20px; padding: 0px 7px;
    font-size: .72rem; font-weight: 700; min-width: 20px; text-align: center;
}
.sct-res-tab.active .sct-res-badge { background: #1d4ed8; }

.sct-res-panel { display: none; }
.sct-res-panel.active { display: block; }

.sct-res-url { max-width: 320px; word-break: break-all; font-size: .82rem; }

.domain-transfer {
  text-align: center;
  background-color: #f0f0ff;
}

.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.step-box {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  margin: 0 10px;
}
.step-box span {
  margin-top: 10px;
  font-size: 14px;
}
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #a8a8a8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 15px;
}
.step-box.active .step-icon {
  border-color: #3737ff;
  color: #3737ff;
}
.step-box.active span {
  color: #3737ff;
  font-weight: 600;
}
.line {
  width: 210px;
  height: 1px;
  background: #a8a8a8;
  margin-bottom: 25px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.step-content p {
  font-size: 14px;
  color: #080808;
}

.self-mng-jv-vps-main{
    background-color: #f8f8ff;
}



.self-mng-jv-vps{

    background: #fff;

    box-shadow: 0 0 10px #00000014;

    padding: 40px;

    border-radius: 30px;

}
.self-mng-vps-cnt ul li {

    display: inline-flex;

    list-style: none !important;

    margin: 10px;

    width: 45%;

    font-size: 16px;

    font-weight: 400

}



.self-mng-vps-cnt ul li span {

    margin-right: 10px

}
.table-body,
.table-body ul:last-child li:first-child {
  border-bottom-left-radius: 15px;
}
.table-data ul {
  display: flex;
  margin: 0;
}
.table-data ul li {
  width: 33.33%;
  padding: 1rem 2rem;
  margin: 0;
  border-bottom: 1px solid #e2d7ff;
  text-align: center;
}
.table-head {
  background: #22b;
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.table-body ul:last-child li {
  border-bottom: 0;
}
.table-head ul li {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.table-body ul li,
ul li a {
  color: #03305d;
  font-size: 16px;
}
.table-body {
  background-color: #f0f0ff;
  border-bottom-right-radius: 15px;
}
.table-body ul li:first-child {
  background-color: #efe9ff;
}
.table-data-2 ul li {
  width: 50% !important;
}

/* Benefits of Viewing Website css */
.g-suite-lists .g_s_l-box {
    margin-bottom: 20px;
}
.g-suite-lists .g-list-box {
    display: inline-block;
    position: relative;
    padding-left: 60px;
}
.g-suite-lists .g-list-box span {
    font-weight: 400;
    font-size: 16px;
    color: #202020;
}
.list-num {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 40px;
    border-radius: 50%;
    background: #3838ff;
    color: #fff !important;
    text-align: center;
    font-size: 20px;
    font-weight: 500 !important;
    width: 40px;
    height: 40px;
}
.g-suite-lists .g-list-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 500;
}
.g-suite-lists .g-list-box span {
    font-weight: 400;
    font-size: 16px;
    color: #202020;
}

@media (max-width:768px) {
    .self-mng-vps-cnt ul li{
        width: 100%;
    }
}

@media (max-width:576px) {
    .self-mng-jv-vps{
        padding: 20px;
    }

    .self-mng-vps-cnt ul li{
        margin: 10px 0 0;
    }
}

/*====================================*
*CSV OPTIONS / DELIMITER*
*====================================*/

.csv-options-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 18px;
    background: #fff;
    border: 1px solid #e8eef7;
    border-radius: 10px;
}

.delimiter-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.options-label {
    font-size: 14px;
    font-weight: 600;
    color: #003b8e;
    margin-right: 5px;
}

.delimiter-btn {
    padding: 8px 14px;
    border: 1px solid #d5dfed;
    border-radius: 6px;
    background: #fff;
    color: #003b8e;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.delimiter-btn:hover {
    background: #edf4ff;
    border-color: #0056d6;
}

.delimiter-btn.active {
    background: #0056d6;
    color: #fff;
    border-color: #0056d6;
}


/*====================================*
*SETTINGS BUTTON*
*====================================*/

.settings-wrapper {
    position: relative;
    flex-shrink: 0;
}

.settings-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d5dfed;
    border-radius: 7px;
    background: #fff;
    color: #003b8e;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s ease;
}

.settings-btn:hover,
.settings-btn.active {
    background: #edf4ff;
    border-color: #0056d6;
    color: #0056d6;
}


/*====================================*
*SETTINGS PANEL*
*====================================*/

.settings-panel {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 360px;
    background: #fff;
    border: 1px solid #dfe8f5;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    z-index: 999;
}

.settings-panel.show {
    display: block;
}

.settings-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    border-bottom: 1px solid #e8eef7;
}

.settings-title strong {
    color: #003b8e;
    font-size: 16px;
}

.settings-close {
    border: none;
    background: transparent;
    color: #777;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.settings-close:hover {
    color: #003b8e;
}


/*====================================*
*SETTINGS ROW*
*====================================*/

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 18px;
    border-bottom: 1px solid #edf1f6;
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-row strong {
    display: block;
    margin-bottom: 3px;
    color: #333;
    font-size: 14px;
}

.setting-row small {
    display: block;
    max-width: 240px;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
}

.setting-select-row select {
    min-width: 105px;
    padding: 7px 9px;
    border: 1px solid #d5dfed;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    outline: none;
}

.setting-select-row select:focus {
    border-color: #0056d6;
}


/*====================================*
*TOGGLE SWITCH*
*====================================*/

.switch {
    position: relative;
    display: inline-block;
    width: 42px;
    min-width: 42px;
    height: 23px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked + .slider {
    background: #0056d6;
}

.switch input:checked + .slider:before {
    transform: translateX(19px);
}


/*====================================*
*RESPONSIVE - CSV OPTIONS*
*====================================*/

@media(max-width:767px) {

    .csv-options-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .delimiter-options {
        width: 100%;
    }

    .delimiter-btn {
        flex: 1;
    }

    .settings-wrapper {
        display: flex;
        justify-content: flex-end;
    }

    .settings-panel {
        width: min(360px, calc(100vw - 40px));
    }

}