body { 
    background-color: #121212; 
    color: #e0e0e0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

.sidebar { 
    background-color: #1e1e1e; 
    height: 100vh; 
    border-right: 1px solid #333; 
    padding: 20px; 
    overflow-y: auto;
}

.card { 
    background-color: #252525; 
    border: 1px solid #333; 
    color: white; 
    margin-bottom: 20px; 
}

.card-header {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-fire { 
    background-color: #d32f2f; 
    color: white; 
}

.btn-fire:hover {
    background-color: #b71c1c;
    color: white;
}

.list-group-item { 
    background-color: #2d2d2d; 
    color: white; 
    border-color: #444; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-badge { 
    font-size: 0.75rem; 
    color: #aaa;
}

.count-badge {
    background-color: #444;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.action-btns .btn {
    margin-left: 5px;
}