@charset "ISO-8859-1";
body {
	margin: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
}

.header {
	overflow: hidden;
	background-color: #0a5840;
	padding: 16px;
	border-bottom-color: #aaa;
	border-bottom-style: solid;
	position: sticky;
	top: 0;
	width: 100%;
}
.header i {
	color: #c6a65d;
	font-size: 18px;
    font-style: italic;
}
/* text header */
div.logo {
	color: #ffffff;
    /* text-shadow: 3px 3px silver; */
	cursor: pointer;
}
@media screen and (min-width: 601px) {
	div.logo {
  		font-size: 2.5em;
	}
}
@media screen and (max-width: 600px) {
	div.logo {
    	font-size: 28px;
	}
}

/* Fixed sidenav, full height */
.sidenav {
	height: 100%;
	width: 181px;
	position: fixed;
	z-index: 1;
  	left: 0;
	background-color: #c6a65d;
	overflow-x: hidden;
}
      
/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
	padding: 6px 0px 6px 6px;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	color: white;
	display: block;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: inset;
	outline-width: thin; 
}
      
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
 	background-color: #000000;
	color: lime;
}
      
/* Add an active class to the active dropdown button */
.active {
	background-color: #777;
	color: white;
}
      
/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
	display: none;
	background-color: #678;
	padding-left: 12px;
}
      
.dropdown-container a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 17px;
}
      
.dropdown-container a:hover {
	background-color: #444;
}
      
/* Optional: Style the caret down icon */
.fa-caret-down {
	float: right;
	padding-right: 8px;
}

/* Main content */
.main {
	margin-left: 181px; /* Same as the width of the sidenav */
	font-size: 16px; /* Increased text to enable scrolling */
	padding : 20px;
}

td, th {
	padding: 0px 3px;
	vertical-align: top;
}



/* Tombol hamburger muncul saat mobile */
.navbar {
    background-color: #0a5840;
    padding: 10px;
    display: none;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.hamburger {
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Responsive untuk layar kecil */
@media screen and (max-width: 420px) {
    .sidenav {
        width: 0;
        overflow-x: hidden;
        transition: 0.3s;
    }

    .main {
        margin-left: 0;
    }

    .navbar {
        display: block;
    }
}
