body {
    font-family: 'Orbitron', sans-serif;
    background: #f9f9f9;
    color: black;
    transition: background 0.3s ease-in-out;
    background-image: url('../Asset/backgroundwsd.jpg');
    background-repeat: no-repeat;
    background-size: 100% 140%;
    background-attachment: fixed;
}


h1{
    font-family: 'Oxanium', sans-serif;
    font-weight:bold;
    color: #29a728;
    text-shadow: 2px 2px 2px #000000;
}

h2, h3, h4 {
    font-weight: 700;
    color: #29a728;
    margin-bottom: 30px;
    text-shadow: 2px 2px 2px #000000
}


.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;           /* 💡 Aktifkan scroll */
    overflow-x: hidden;
    background: linear-gradient(135deg, #0e8669, #79fe01);
    padding-top: 20px;
    box-shadow: 2px 0px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}


.sidebar a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    border-bottom: 1px solid #ddd;
}

.sidebar a:hover {
    background-color: #1abc9c;
    color: white;
    font-weight: 600;
    border-radius: 5px;
}


.sidebar.hidden {
    width: 0;
    padding: 0;
    overflow: hidden;
}
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.3);
    border-radius: 3px;
}


.content.expanded {
    margin-left: 20px;
}

.toggle-btn {
    position: fixed;
    left: 10px;
    top: 10px;
    font-size: 28px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 1000;
}

.table {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
    color: #333;
    padding: 15px;
    text-align: center;
}

.table th {
    background-color: #0e8669; /* Tosca */
    font-weight: 600;
    color: white;
}

.table td {
    background-color: #f8f8f8;
}

.card {
    background-color: #ffffff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-body {
    font-size: 1.2rem;
}   

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.content {
    margin-left: 250px;
    padding: 30px;
    transition: 0.3s ease-in-out;
    flex: 1;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
}

.text-info {
    color: #39ffd1 !important;   /* Mint accent, sejuk & modern */
    text-shadow: 0 0 6px #1db95450; /* Optional: ada sedikit glow hijau */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.text-info:hover, .btn-link.text-info:hover {
    color: #a3e635 !important;   /* Lime soft, lebih terang saat hover */
    text-shadow: 0 0 10px #39ffd188;
}

.btn-primary {
    background: linear-gradient(90deg, #1db954 60%, #39ffd1 100%);
    color: #1b2923;
    border: none;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(61, 255, 209, 0.15);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(90deg, #39ffd1 0%, #1db954 90%);
    color: #fff;
    box-shadow: 0 0 20px #39ffd1b9, 0 0 8px #1db95480;
    outline: none;
}

.btn-info {
    background: #27ae60; /* Leaf green, tidak terlalu terang */
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px #145a3244;
    letter-spacing: 0.5px;
    transition: background 0.18s, color 0.18s;
}
.btn-info:hover, .btn-info:focus {
    background: #228B22; /* Lebih tua, seperti daun basah */
    color: #eafbee;
    box-shadow: 0 0 14px #27ae6044;
    outline: none;
}
