@charset "utf-8";
@font-face {
        font-family: 'Poppins';
        src: url('../_poppins-cdnfonts/Poppins-Light.ttf'); /* Panggil file font Anda */
    }

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	background-color: #aee4ae;
}
button {
  all: unset; /* Menghapus semua gaya bawaan */
  text-decoration: none; /* Menghapus garis bawah teks */
  cursor: pointer; /* Menambahkan kursor pointer */
  /* Tambahkan properti gaya lain yang diinginkan di sini */
}
header {
	width: 100%;
	background: #6ddd69;
	height: 120px;
}
.header-logo {
	padding: 10px 0px 0px 10px;
	height: 80px;
	float: left;
}
.header-title {
	padding: 20px 0px 0px 5px;
	float: left;
}
.header-user {
	float: right;
	padding: 10px 10px;
}
.container {
	width: 100%;
	display:flex;
	padding: 5px;
}
.cont-center {
	display: flex;
	justify-content:center;
}
.cont-saround {
	display: flex;
	justify-content:space-around;
}
.cont-sbetween {
	display: flex;
	justify-content:space-between;
}
.cont-30 {
	width: calc(33% - 10px);
	margin: 10px;
}
.cont-50 {
	width: calc(50% - 15px);
	margin: 5px;
}
.cont-60 {
	width: calc(65% - 10px);
	margin: 5px;
	display: flex;
}
.content {
	width: calc(100% - 10px);
	padding: 5px;
}
.content-fit {
	width: calc(100% - 10px);
	padding: 10px;
	width:fit-content;
}
.content-flex {
	width: calc(100% - 10px);
	padding: 5px;
	display: flex;
}
.radius-10 {
	border-radius: 10px;
}
input{
    width:auto;
    color: #000000;
	background-color: #cfe7cf;
    border: 1px solid #043f0b;
    border-radius: 5px;
    padding: 10px;
	margin: 5px;
}
input[type="file"] {
	border: none;
	background-color: #cfe7cf;
}
select{
    width:250px;
    padding: 10px;
	background-color: #cfe7cf;
    border: 1px solid #043f0b;
    color: #000000;
	border-radius: 5px;
	margin: 5px;
}
.img-round {
	width: 100px;
	height: 100px; 
	border-radius: 100%;
	object-fit:cover;
}
.img-box {
	width: 100px;
	height: 100px; 
	overflow: hidden;
	object-fit:cover;
}
.img-round-sm {
	width: 50px;
	height: 50px; 
	border-radius: 100%;
	object-fit:cover;
}
.img-box-sm {
	width: 50px;
	height: 50px; 
	object-fit:cover;
}
.img-box-round {
	width: 80px;
	height: 60px; 
	border-radius: 20px;
	object-fit:cover;
	margin: 5px;
	float: left;
}
.img-box-300 {
	width: 400px;
	height: 300px; 
	border-radius: 20px;
	overflow: hidden;
	object-fit:cover;
	float: left;
	margin: 10px;
}

.btn {
	padding: 10px 20px 10px 20px;
	height: 50px;
	line-height:50px;
	border-radius: 10px;
	font-size:14px;
	text-align:center;
	text-decoration:none;
    box-shadow: 5 5 10px rgba(255,255,255,.3);
	margin:10px;
}
.btn-sm {
	padding: 3px 5px 3px 5px;
	height: 30px;
	line-height:30px;
	border-radius: 5px;
	font-size:14px;
	text-align:center;
	text-decoration:none;
    box-shadow: 5 5 10px rgba(255,255,255,.3);
	margin:5px;
}
.bg-merah {
	background-color: red;
	color: white;
	text-decoration: none;
}
.bg-hijau {
	background-color: green;
	color: white;
	text-decoration: none;
}
.bg-orange {
	background-color: orange;
}
.bg-pars {
	background-color: rgb(223, 100, 223);
}
.bg-cyan {
	background-color: rgb(104, 170, 231);
}
footer {
	width:100%;
	height:80px;
	display:flex;
	justify-content:center;
	background-color:#6ddd69;
	margin-top: 50px;
}
.footer_box {
	text-align:center;
}
.footer-logo {
	padding: 5px 5px 5px 5px;
	height: 50px;
	float: left;
}
.bersih {
	clear:both;
}
th {
  background-color: #7A7A7A;
  color: white;
  font-size:16px;
  font-weight:bold;
}
td {
  font-size:14px;
  text-align: left;
}
th, td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
tr:nth-child(even) {
	background-color: #dfdddd;
}
tr:nth-child(odd) {
	background-color: #ECECEC;
}

@media (min-width: 481px) and (max-width: 1200px) {
.container{
	display: block;
}
.cont-60 {
	width: calc(60% - 5px);
	padding:10px;
}
.cont-50 {
	width: calc(100% - 5px);
}
.cont-30 {
	width: calc(33% - 5px);
	padding:10px;
}

}

@media screen and (max-width: 480px) {
.header-title {
	width:fit-content ;
}
.container {
	display: block;
}
.content{
	display: block;
}
.content-flex{
	display: block;
}
.cont-60 {
	width: 100%;
	display:block;
}
.cont-50 {
	width: 100%;
	display: block;
	margin: 5px;
}
.cont-30 {
	width: calc(100% - 5px);
	display:block;
}
.img-box-round {
	width: 50px;
	height: 50px; 
	border-radius: 5px;
	object-fit:cover;
}
}