body {
    background: #181a1b;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.sidebar {
    width: 220px;
    background: #23272a;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 20px;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
}

.sidebar .site-name {
    color: #c5ff00;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    display: block;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px 0 0 4px;
    transition: background 0.2s, color 0.2s;
    font-size: 1em;
}

.sidebar ul li a.active, .sidebar ul li a:hover {
    background: #1a4d1a;
    color: #c5ff00;
}

.sidebar .sidebar-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 0.9em;
}

.main-content {
    margin-left: 220px;
    padding: 40px 30px 30px 30px;
    min-height: 100vh;
    background: #181a1b;
}

h1, h2, h3, h4, h5 {
    color: #c5ff00;
    margin-top: 0;
}

button, .btn {
    background: #c5ff00;
    color: #181a1b;
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

button:hover, .btn:hover {
    background: #fff;
    color: #1a4d1a;
}

input, select, textarea {
    background: #23272a;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #c5ff00;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #23272a;
    color: #fff;
}

.table th, .table td {
    padding: 12px 10px;
    border-bottom: 1px solid #333;
}

.table th {
    background: #1a1d1f;
    color: #c5ff00;
}

.table tr:hover {
    background: #222b22;
}

.status-published {
    color: #c5ff00;
    font-weight: bold;
}

.status-draft {
    color: #ff9800;
    font-weight: bold;
}

.status-scheduled {
    color: #00bcd4;
    font-weight: bold;
}

.filter-bar, .search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-bar select, .search-bar input {
    width: auto;
    min-width: 150px;
}

.bulk-actions {
    margin-top: 10px;
}

@media (max-width: 900px) {
    .sidebar {
        width: 60px;
    }
    .sidebar ul li a {
        padding: 12px 10px;
        font-size: 0.95em;
    }
    .main-content {
        margin-left: 60px;
        padding: 20px 10px 10px 10px;
    }
} 