/* style.css */

/* Pastikan elemen root mengambil tinggi penuh */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    /* Ubah display dari center ke column untuk layout fullscreen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    /* Hapus max-width untuk halaman bel fullscreen */
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%; /* Lebar penuh */
    max-width: 700px; /* Pertahankan ini untuk halaman login/admin/moderator */
    text-align: left;
}

/* Tombol Bel Regu (HARUS DIUBAH DI bell.php untuk fullsize) */
.bell-button {
    width: 100%;
    height: 200px;
    background-color: #28a745;
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px #1e7e34;
}

/* ... (CSS lainnya tetap sama) ... */

/* style.css - Minimalis dan Responsif */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    text-align: left;
}

/* Form dan Input */
input[type="text"], input[type="password"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Tabel */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}

/* Tombol Bel Regu */
.bell-button {
    width: 100%;
    height: 200px;
    background-color: #28a745;
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px #1e7e34;
}

.bell-button:active {
    box-shadow: 0 2px #1e7e34;
    transform: translateY(2px);
}

.bell-disabled {
    background-color: #6c757d !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

/* Responsif Sederhana */
@media (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    .bell-button {
        height: 150px;
        font-size: 1.8em;
    }
}
/* Gaya untuk Header yang Fixed */

/* Gaya untuk Footer yang Fixed */
.fixed-footer {
    position: fixed; /* Membuat footer tetap di tempatnya */
    bottom: 0; /* Menempel di bagian bawah */
    left: 0;
    width: 100%;
    background-color: #555; /* Warna latar belakang footer */
    color: white;
    padding: 8px 20px;
    z-index: 1000; /* Memastikan footer berada di atas konten lain */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
    text-align: center;
}