/* ---------------------------------------------------------
   VSSRank 6D — Global Stylesheet (Alexa-style)
   --------------------------------------------------------- */
.vss-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Global Reset */
body {
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Title Bar — 4/4 */
.title-bar {
    width: 100%;
    background: #1F3A93;
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

/* ---------------------------------------------------------
   VSSRank 6F — PREMIUM STATSBAR (1-LINE LOCK)
   --------------------------------------------------------- */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    white-space: nowrap;          /* ⛔ voorkomt 2 regels */
    overflow: hidden;
    text-overflow: ellipsis;      /* netjes bij kleine schermen */
    
    max-width: 1250px;
    margin: 15px auto;
    padding: 10px 18px;

    background: #EAF1FB;
    border: 2px solid #4B77BE;
    border-radius: 10px;

    font-size: 16px;
    color: #1F3A93;
    font-weight: 500;
}

.stats-bar b {
    font-weight: 700;
    color: #0E2F6E;
}

/* MAIN GRID — 1 / 3 / 1 */
.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 10px;
    max-width: 1250px; /* was 1600px — dit was het probleem */
    margin: 0 auto;
    padding: 10px 10px 20px 10px;
}

/* Section Title */
.section-title {
    background: #4B77BE;
    color: white;
    padding: 10px;
    font-size: 17px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

/* LEFT COLUMN — Directory */
.directory-box {
    background: white;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d8e2ef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.directory-item {
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #eaf1fb;
}

.directory-item:hover {
    background: #d6e6fa;
}

/* MIDDLE COLUMN — Top Table */
.table-container {
    background: white;
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.table-title {
    background: #1F3A93;
    padding: 10px;
    color: white;
    text-align: center;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
}

.top-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.top-table th {
    background: #4B77BE;
    color: white;
    text-align: left;
    padding: 10px;
}

.top-table td {
    padding: 10px;
    border-bottom: 1px solid #eaf1fb;
}

.top-table tr:nth-child(even) {
    background: #f4f8ff;
}

.top-table tr:hover {
    background: #d6e6fa;
}

.domain-link {
    color: #1F3A93;
    font-weight: bold;
    text-decoration: none;
}

.domain-link:hover {
    text-decoration: underline;
}

/* DOT Score bubble */
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.dot-orange { background: #F89406; }
.dot-green  { background: #2ECC71; }
.dot-gold   { background: #F1C40F; }
.dot-yellow { background: #F7DC6F; }
.dot-black  { background: #333; }

/* RIGHT COLUMN */
.right-box {
    background: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #d8e2ef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}

.join-button {
    display: block;
    padding: 10px;
    background: #4B77BE;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}

.join-button:hover {
    background: #355F9E;
}

/* Countries & Newly */
.countries-list,
.newly-list {
    max-height: 350px;
}

.country-item,
.newly-item {
    padding: 6px 0;
    border-bottom: 1px solid #eaf1fb;
    font-size: 14px;
}

.country-item:hover,
.newly-item:hover {
    background: #d6e6fa;
}
/* Sidebar buttons under each other */
.side-btn {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;  /* space between buttons */
    font-size: 15px;
}

/* Join button (turquoise) */
.join-btn {
    background: #008B8B;
}
.join-btn:hover {
    background: #006f6f;
}

/* Dot Score (Alexa Orange) */
.dot-btn {
    background: #F89406;      /* official Alexa orange */
}
.dot-btn:hover {
    background: #d67b04;
}

/* Countries button (dark grey) */
.countries-btn {
    background: #333;
}
.countries-btn:hover {
    background: #111;
}
/* ------------------------------ */
/* VSSRank JOIN WIZARD LAYOUT     */
/* ------------------------------ */

.content-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.vss-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.vss-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
}

.vss-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c5282;
}

.vss-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 5px;
    background: #f8fafc;
}

.vss-input:focus {
    outline: none;
    border-color: #3182ce;
    background: #ffffff;
}

.vss-button {
    width: 100%;
    padding: 10px;
    background: #3182ce;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.vss-button:hover {
    background: #2b6cb0;
}

.vss-error {
    background: #fed7d7;
    color: #742a2a;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #f56565;
    margin-bottom: 15px;
}
