@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body{
	font-family:"Poppins",Arial;background:#f4f4f4;
    
    font-size: 12px;
    min-height: 90vh; /* full viewport height */
}
.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-regular-italic {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.space-mono-bold-italic {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: italic;
}
.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.courier-prime-regular-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-bold-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic;
}

main { flex:; min-height:100vh; }
.table-actions a { margin-bottom: 4px; display:block; }
/* ========================
   NAVBAR STYLE
   ======================== */

.navbar-toggler:hover{
	border-color: deeppink;
}
nav a.active {
    font-weight: 900;;
}
.nav-list {
	
    display: flex;
    flex-direction: row; 
    justify-content: space-evenly;
    list-style-type: none;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 4px;
    padding:0 1%;
  }
.nav-link {
	font-weight: 700;
}
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0 20px 0;
}

/* --- GRAFIK BATANG SEDERHANA (TANPA LIBRARY) --- */
.chart{
    display:flex;
    align-items:flex-end;
    gap:10px;
    height:220px;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
}

.bar{
    flex:1;
    background:#ff1493;
    border-radius:6px 6px 0 0;
    text-align:center;
    color:white;
    font-size:12px;
}

.bar-label{
    text-align:center;
    font-size:12px;
}