body {
    margin: 0;
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #fff;
}

/* MAIN 3-COLUMN LAYOUT */
.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

/* EACH COLUMN */
.col {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* COLUMN TITLE */
.col-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 6px;
    opacity: 0.9;
}

/* AREA CARD */
.card {
    background: #1c1c1e;
    border-radius: 16px;
    padding: 10px 12px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT SIDE */
.left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.area {
    font-weight: 600;
    font-size: 1.1rem;
}

.desc {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* RIGHT SIDE */
.nums {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avail {
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: bold;
    color: black;
}

/* COLORS */
.green {
    background: #4cd964;
}

.yellow {
    background: #ffcc00;
}

.red {
    background: #ff3b30;
}

.green-bg {
    background: #4cd964;
}

.yellow-bg {
    background: #ffcc00;
}

.red-bg {
    background: #ff3b30;
}

/* COLUMN HEADER (Area / Description / Max / etc) */
.col-header {
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 60px auto 40px 40px 60px 50px;
    padding: 0 4px;
    margin-left: 10px;
    margin-bottom: 4px; /* 8 */
    font-size: 0.78rem;
    opacity: 0.55;
    line-height: 0; /* 1.1 */
}

/* ------------------------------ */
/*         STATS CARD             */
/* ------------------------------ */

.stats-card {
    background: #1c1c1e;
    border: 1px solid #555;
    border-radius: 20px;
    padding: 18px 22px;
    color: white;
    text-align: left;

    /* Fix Over-Expansion */
    width: 100%;           
    box-sizing: border-box;

    /* spacing consistency */
    margin-bottom: 0px; /* 8 */
}

.title {
    font-size: 1.1rem;
    margin-bottom: 6px;
    opacity: 0.95;
}

.big-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hstack {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.hstack2 {
    display: flex;
    justify-content: space-evenly;
    font-size: 1rem;
}

.num {
    font-weight: 700;
}

.footer {
    width: 100%;
    margin-left: 10px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    opacity: 0.55;
    line-height: 0;
}