body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    color: #333;
}
.admin-container {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 250px;
    background-color: #1f232b;
    color: white;
    padding: 20px 0;
}
.sidebar h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #F1C40F;
}
.sidebar a {
    display: block;
    color: #c0c5ce;
    padding: 15px 25px;
    text-decoration: none;
    transition: 0.3s;
}
.sidebar a:hover, .sidebar a.active {
    background-color: #0a0b10;
    color: white;
    border-left: 4px solid #F1C40F;
}
.main-content {
    flex-grow: 1;
    padding: 30px;
}
.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background-color: #F1C40F;
    color: #000;
}
.btn-danger {
    background-color: #ff4d4d;
    color: white;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #eee;
}
th, td {
    padding: 12px;
    text-align: left;
}
th {
    background-color: #f9f9f9;
}
/* Login specific */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #0a0b10;
}
.login-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.login-box h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 20px;
    color: #1f232b;
}
.error-msg {
    color: #ff4d4d;
    margin-bottom: 15px;
    text-align: center;
}
