/* ===============================
   GLOBAL STYLE
=============================== */

body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    color: #1976d2;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

/* ===============================
   LOGIN PAGE
=============================== */

.login-box {
    max-width: 340px;
    margin: 80px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}

.login-box h2 {
    text-align: center;
}

.error-box {
    background: #ffebee;
    border: 1px solid #c62828;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #c62828;
}

/* ===============================
   FORM
=============================== */

input, button, select {
    padding: 8px;
    width: 100%;
    margin: 5px 0 10px 0;
    box-sizing: border-box;
}

button {
    background: #1976d2;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #135ca1;
}

/* ===============================
   CONTAINER / CONTENT BOX
=============================== */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
}

/* ===============================
   MENU BUTTONS
=============================== */

.menu-box {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.menu-btn {
    padding: 12px 20px;
    background: #1976d2;
    color: white;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    flex: 1;
}

.menu-btn:hover {
    background: #145ea1;
}

.menu-btn.logout {
    background: #c62828;
}

.menu-btn.logout:hover {
    background: #a31313;
}

/* ===============================
   TABLE
=============================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 8px;
}

table th {
    background: #eee;
}

/* ===============================
   ABSENSI PAGE
=============================== */

.status-box {
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

#log div {
    padding: 4px;
    border-bottom: 1px dashed #ccc;
}

/* ===============================
   UTILITY
=============================== */

img {
    border-radius: 5px;
}

