/* =====================
   JOLEA HOSTING PANEL (FINAL)
===================== */

body {
    margin: 0;
    background: #0b0f1a;
    font-family: Arial, sans-serif;
}

/* LAYOUT */
.jolea-panel {
    display: flex;
    min-height: 100vh;
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
}

/* SIDEBAR */
.jolea-sidebar {
    width: 240px;
    background: #020617;
    padding: 20px;
    color: #fff;
}

.jolea-sidebar h2 {
    margin-bottom: 30px;
}

/* MENU */
.jolea-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jolea-sidebar li {
    margin-bottom: 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.jolea-sidebar a {
    display: block;
    padding: 12px;
    color: #94a3b8;
    text-decoration: none;
}

/* HOVER + ACTIVE */
.jolea-sidebar li:hover a {
    background: #1e293b;
    color: white;
    border-radius: 8px;
}

.jolea-sidebar li.active a {
    background: linear-gradient(90deg, #0a84ff, #0057ff);
    color: white;
    border-radius: 8px;
}

/* MAIN */
.jolea-main {
    flex: 1;
    padding: 25px;
    color: #e5e7eb;
}

/* TOPBAR */
.jolea-topbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

/* CARDS GRID */
.jolea-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARDS */
.jolea-card {
    background: #1f2937;
    padding: 20px;
    border-radius: 12px;
    color: white;
    transition: 0.2s;
}

.jolea-card:hover {
    transform: translateY(-5px);
}

/* HIGHLIGHT CARD */
.jolea-card.highlight {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* CONTENT BOX */
.jolea-content {
    margin-top: 30px;
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
}

/* TABLE */
.jolea-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.jolea-table th {
    text-align: left;
    padding: 12px;
    background: #0f172a;
}

.jolea-table td {
    padding: 12px;
    border-top: 1px solid #334155;
}

/* STATUS */
.active {
    color: #22c55e;
    font-weight: bold;
}

/* MOBILE */
@media(max-width: 900px){
    .jolea-sidebar {
        display: none;
    }

    .jolea-cards {
        grid-template-columns: 1fr;
    }
}