@import url('https://fonts.googleapis.com/css?family=Poppins:400,600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f6f8fc;
    color: #212121;
}

#wrapper {
    max-width: 880px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(0,0,0,.09);
    overflow: hidden;
}

#navigasi {
    background: #2176ff;
    padding: 0;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #e5e9f2;
}

#navigasi nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navigasi .nav-list {
    display: flex;
    gap: 10px;
}

#navigasi a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 16px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: background .16s, border .18s;
    border-radius: 0 0 9px 9px;
    gap: 9px;
}
#navigasi a.aktiv, #navigasi a:hover {
    background: #1752a0;
    border-bottom: 3px solid #ffc700;
    color: #ffc700;
}
#navigasi svg {
    width: 21px;
    height: 21px;
    margin-right: 6px;
    vertical-align: middle;
}

#tgl {
    font-size: 13px;
    color: #f9e7a4;
    padding-right: 24px;
}

#header {
    padding: 38px 32px 22px 32px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(90deg, #2176ff 60%, #fff 100%);
}

#header img {
    width: 62px; height: 62px; margin-right: 16px; filter: drop-shadow(0 3px 8px #1565c0cc);
}

#header h1 {
    font-size: 42px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

#header span {
    font-size: 18px;
    color: #ffe066;
    display: block;
    margin-top: 3px;
    font-weight: 500;
}

#jam {
    margin-left: auto;
    text-align: right;
}
#jam span {
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
}

.status_on, .status_off {
    display: inline-block;
    padding: 7px 19px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 999px;
    background: #f5f5f5;
    color: #1752a0;
    border: 2px solid #2176ff;
    cursor: pointer;
    transition: all .15s;
}
.status_on {
    background: #d2ffdb;
    color: #2b953b;
    border-color: #2b953b;
}
.status_off {
    background: #ffe2e2;
    color: #da2323;
    border-color: #da2323;
}
.status_on:hover, .status_off:hover {
    filter: brightness(.95);
}

#content {
    padding: 40px 32px;
    min-height: 380px;
}

#footer {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    background: #f1f3fa;
    padding: 24px 0 18px 0;
    border-top: 1px solid #f3f3f3;
}
#footer a {
    color: #2176ff;
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width: 600px) {
    #wrapper { margin:0; border-radius:0; box-shadow:none; }
    #header { flex-direction: column; padding:22px 7vw 18px 7vw; gap:12px;}
    #header h1 { font-size: 27px;}
    #header img { width:38px;height:38px;}
    #content { padding:18px 4vw;}
    #navigasi a { padding:11px 6px; font-size:14px;}
}
