* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 20px;
    background: #f4f6f9;
    color: #333;
}

/* Judul */
h2, h3 {
    margin-bottom: 10px;
    color: #222;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
}

/* Table Style */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th {
    background: #2563eb;
    color: white;
    padding: 12px;
    text-align: left;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
}

/* Hover Effect */
table tr:hover {
    background: #f1f5ff;
}

/* Status */
.status-ok {
    color: green;
    font-weight: bold;
}

.status-no {
    color: red;
    font-weight: bold;
}

/* Button / Link */
a {
    text-decoration: none;
    color: #2563eb;
    font-weight: bold;
}

a:hover {
    color: #1e40af;
}

/* Form */
form {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
    max-width: 500px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #1e40af;
}

.dashboard-actions {
    margin: 20px 0 30px 0;
    display: flex;
    gap: 20px;
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #2563eb;
    color: #ffffff !important;
    text-decoration: none;

    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;

    transition: all 0.2s ease;
}

.dashboard-btn i {
    font-size: 14px;
    color: #ffffff;
}

.dashboard-btn:hover {
    background: #1e40af;
    color: #ffffff !important;
}

.dashboard-btn:hover i {
    color: #ffffff;
}

.dashboard-btn:active {
    transform: scale(0.98);
}

/* DASHBOARD ICON GLOBAL */

.dashboard-title i,
.dashboard-alert i,
.section-title i {
    color: #2563eb !important;
}

.alert-count {
    color: #dc2626;
    font-weight: bold;
}

/* Responsive HP */
@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    table th, table td {
        font-size: 14px;
        padding: 8px;
    }
}
