/* ------------------------------
   NAVIGATION (your existing style)
--------------------------------*/
.nav {
    margin-bottom: 16px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.nav-link {
    margin-right: 12px;
    text-decoration: none;
    color: #555;
    padding: 2px 4px;
    border-radius: 4px;
    transition: 0.15s ease;
}

.nav-link + .nav-link::before {
    content: "|";
    margin: 0 6px 0 2px;
    color: #aaa;
}

.nav-link:hover {
    background: #eaeaea;
    color: #000;
}

/* ------------------------------
   PAGE BACKGROUND + TYPOGRAPHY
--------------------------------*/
body {
    font-family: Arial, sans-serif;
    background: #f5f6f7;
    margin: 0;
    padding: 20px;
    color: #222;
}

/* ------------------------------
   SETTINGS GROUP CONTAINERS
--------------------------------*/
.settings-group {
    background: #fff;
    padding: 20px;
    margin-bottom: 28px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Group title */
.settings-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5e5e5;
    color: #333;
}

/* Optional group description */
.settings-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

/* ------------------------------
   INPUTS + BUTTONS
--------------------------------*/
input[type="text"],
input[type="number"],
select {
    padding: 8px 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    width: 220px;
    font-size: 14px;
    margin-right: 6px;
}

button {
    padding: 8px 14px;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.15s ease;
}

button:hover {
    background: #005fa3;
}

button.delete {
    background: #d9534f;
}

button.delete:hover {
    background: #b52b27;
}

/* ------------------------------
   TABLES
--------------------------------*/
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

table th, table td {
    padding: 10px;
    border-bottom: 1px solid #e1e1e1;
}

table th {
    background: #fafafa;
    text-align: left;
    font-weight: 600;
}

/* ------------------------------
   STATUS TEXT
--------------------------------*/
.status-text {
    margin-top: 10px;
    font-weight: bold;
    color: #444;
}
/* ------------------------------
   LEFT SIDEBAR NAVIGATION
--------------------------------*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 190px;
    height: 100%;
    background: #ffffff;
    border-right: 1px solid #ddd;
    padding: 20px 15px;
    box-shadow: 2px 0 6px rgba(0,0,0,0.05);
}

.sidebar-logo {
    display: block;
    width: 160px;
    height: auto;
    max-height: 100px;
    margin: 0 auto 15px auto;
    object-fit: contain;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sidebar-link {
    display: block;
    padding: 8px 10px;
    margin-bottom: 6px;
    text-decoration: none;
    color: #444;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.15s ease;
}

.sidebar-link:hover {
    background: #eaeaea;
    color: #000;
}

.sidebar-link.active {
    background: #0078d4;
    color: #fff;
}

.sidebar-footer {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    font-size: 11px;
    color: #888;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* ------------------------------
   MAIN CONTENT AREA
--------------------------------*/
.content {
    margin-left: 220px; /* space for sidebar */
    padding: 20px;
}

.status-box {
    background: #ffffff;      /* white box */
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    width: 320px;
    line-height: 1.6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.label {
    font-weight: 600;
    color: #333;
}

