
.dashboard-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .dashboard-bar {
        grid-template-columns: 1fr;
    }
}
.stat-box {
    background: #f7f7f7;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.stat-box h3 {
    margin: 0 0 0.5rem;
}
.action-buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0073aa;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}
.action-buttons a:hover {
    background: #005f8d;
}
table.domba-table {
    width: 100%;
    border-collapse: collapse;
}
table.domba-table th, table.domba-table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}
table.domba-table img {
    max-height: 60px;
    border-radius: 6px;
}
