* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F2F5F5;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.uri-text {
    margin-left: 10px;
}

.loader {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top-color: #4BE4C0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px #4BE4C0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 8px #4BE4C0;
}


.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contain-login {
    position: relative;
    background-color: white;
    border-radius: 20px;
    width: 750px;
    height: 400px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
    overflow: hidden;
}

.ilustrasion img {
    width: 300px;
    margin-left: 20px;
}

.back a {
    position: absolute;
    top: 4%;
    left: 4%;
    display: flex;
    gap: 4px;
    color: #333;
    text-decoration: none;
}

.bulat,
.bulat-right {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.bulat {
    bottom: -35px;
    left: -35px;
    background-color: #088C61;
    width: 120px;
    height: 120px;
}

.bulat-right {
    top: -95px;
    right: -95px;
    background-color: blue;
    width: 400px;
    height: 400px;
}

.bulat>div,
.bulat-right>div {
    background-color: white;
    border-radius: 50%;
}

.bulat>div {
    width: 80px;
    height: 80px;
}

.bulat-right>div {
    width: 300px;
    height: 300px;
}

.form-login {
    z-index: 3;
    width: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid #5E5D5D;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.form-login>div {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
    position: relative;
}

.form-login h1 {
    font-size: larger;
    font-weight: 800;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
}

.form-login>.alert {
    color: red;
    margin-bottom: 4px;
}

.form-login label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 6px;
    font-size: 16px;
    color: #088C61;
}

.form-login input {
    padding: 10px 15px 10px 28px;
    border-radius: 20px;
    outline: none;
    border: 1px solid #5E5D5D;
    color: #323232;
}

.left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #088C61;
}

.left .forgot {
    color: #088C61;
    text-decoration: none;
    font-weight: 500;
}

.left .forgot:hover {
    text-decoration: underline;
}

.form-login button {
    padding: 10px;
    background-color: rgb(26, 26, 252);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: medium;
    font-weight: bold;
    box-shadow: 5px 5px 15px rgba(26, 44, 237, 0.6);
}

.form-login button:hover {
    background-color: blue;
}

.header-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 8px;
    background-color: #088C61;
    border-bottom: 2px solid #5E5D5D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.title {
    display: flex;
    align-items: center;
}

.title img {
    width: 40px;
    height: 40px;
}

.title h1,
.title span {
    font-size: small;
    font-weight: 700;
    color: white;
    margin-left: 10px;
}

.title .bar {
    font-size: larger;
    cursor: pointer;
    margin-left: 50px;
}

#clock {
    font-weight: 800;
    color: white;
}

.right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification {
    position: relative;
}

.notification i {
    color: white;
    font-size: large;
    cursor: pointer;
}

.notification .row {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 10px;
    height: 10px;
    background-color: brown;
    color: white;
    font-size: 8px;
    border-radius: 50%;
    text-align: center;
}

.notif-dropdown {
    position: fixed;
    top: 12%;
    right: 5%;
    width: 320px;
    max-height: 350px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

.notif-dropdown.show {
    display: flex;
    animation: fadeNotif 0.2s ease;
}

.notif-header {
    background: #088C61;
    padding: 12px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.notif-list {
    max-height: 300px;
    overflow-y: auto;
}

.notif-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notif-item:hover {
    background: #f2f2f2;
}

.notif-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.notif-item span p:first-child {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.notif-item span p:last-child {
    font-size: 12px;
    color: #777;
    margin: 0;
}

.notif-list>p {
    padding: 15px;
    font-size: 13px;
    color: #666;
}

@keyframes fadeNotif {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notif-list span p:nth-child(2) {
    font-size: small;
}

.updated-box {
    position: absolute;
    top: 40%;
    right: 35%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.updated-box .title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #088C61;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.updated-box .title h3 {
    font-size: 20px;
    font-weight: 600;
}

.updated-box .title i {
    color: red;
    cursor: pointer;
}

.detail {
    display: flex;
    gap: 20px;
}

.detail-foto {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #088C61;
}

.info-row {
    display: grid;
    grid-template-columns: 150px 20px 1fr;
    padding: 4px 0;
    align-items: center;
}

.info-row-n {
    display: grid;
    grid-template-columns: 1fr;
}

.label {
    font-weight: bold;
    color: #444;
}

.colon {
    font-weight: bold;
    text-align: center;
}

.value {
    color: #222;
}

.badge {
    padding: 3px 10px;
    border-radius: 6px;
    color: white;
    font-size: 13px;
}

.status-pending {
    background: #c9a500;
}

.status-disetujui {
    background: #088C61;
}

.status-ditolak {
    background: #d93025;
}

.radio-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.radio-list label {
    display: block;
}

.btn-update-status {
    margin-left: 10px;
    padding: 8px 20px;
    background: #088C61;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-update-status:hover {
    background: #066d4e;
}

.dokumen-box {
    margin-top: 10px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

.dokumen-box h4 {
    margin-bottom: 8px;
}

.btn-dokumen {
    display: inline-block;
    margin-top: 8px;
    background: #0066cc;
    padding: 7px 14px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

.btn-dokumen:hover {
    background: #004c99;
}

.info {
    color: white;
    font-size: large;
    cursor: pointer;
}

.profile-1 {
    display: none;
    align-items: center;
}

.profile-1 div,
.profile-1 img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-1 span {
    color: white;
    margin-left: 10px;
}

.logout {
    margin-right: 20px;
}

.logout>button {
    padding: 5px;
    border-radius: 50%;
    outline: none;
    border: none;
    background-color: red;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.logout>button:hover {
    background-color: rgb(222, 10, 10);
}

.edit-profil {
    display: none;
    position: absolute;
    bottom: -50%;
    width: 50%;
    cursor: pointer;
    padding: 3px 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 1px 1px 1px #c1c1c1;
    list-style: none;
    z-index: 2;
}

.edit-profil>a {
    color: #088C61;
    font-size: medium;
    text-decoration: none;
    font-weight: 600;
}

.edit-profil.aktif-edit {
    display: block;
}

.container {
    margin-top: 54px;
    display: flex;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.side-nav {
    width: 266px;
    display: block;
    background-color: white;
    transition: 0.3s ease;
    opacity: 1;
}

.side-nav.aktif {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.side-nav.aktif .profile {
    text-align: center;
}

.side-title {
    height: 100px;
    position: relative;
}

.side-title img {
    object-fit: cover;
    width: 100%;
    height: 100px;
}

.side-title .bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom,
            #088C61 0%,
            rgba(8, 140, 96, 0.287) 50%,
            #088C61 100%);
    overflow: hidden;
}

.side-title .profile {
    top: 30%;
    right: 15%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
}

.side-title .profile div,
.side-title .profile img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.side-title .profile span {
    color: white;
    margin-left: 20px;
}

.side-title .profile>ul {
    position: relative;
    top: 8px;
}

.search {
    padding: 8px 20px;
    position: relative;
}

.search input {
    width: 200px;
    padding: 6px 0 6px 28px;
    border: none;
    border-radius: 20px;
    outline: none;
    color: #323232;
}

.search span {
    top: 33%;
    left: 10%;
    position: absolute;
}

.search input:hover {
    border: 1px solid #5E5D5D;
}

.side-ul,
.dropdown {
    list-style: none;
    margin: 8px 8px 0 6px;
}

.dropdown {
    display: none;
}

.dropdown.aktif-menu {
    display: block;
}

.side-ul p {
    display: block;
    color: #088C61;
    margin-left: 8px;
    font-size: 12px;
    font-weight: 500;
}

.side-ul>li a,
.master-toggle,
.dropdown>li a {
    display: flex;
    align-items: center;
    padding: 7px 12px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Roboto Condensed", sans-serif;
    color: #088C61;
    font-weight: 700;
    border-radius: 4px;
    text-transform: capitalize;
}

.side-ul li:hover>a,
.dropdown li:hover>a,
.master-toggle:hover {
    background-color: #088C61;
    color: white;
}

.side-ul>li>.master-toggle>#icon {
    margin-left: auto;
}

.side-ul i,
.dropdown i {
    margin-right: 10px;
}

.main-container {
    width: 100%;
    overflow-y: auto;
    font-family: "Inter", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.main-container::-webkit-scrollbar {
    width: 4px;
}

.main-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.main-container main {
    padding: 25px;
}

.navbar {
    position: relative;
}

.navbar img {
    object-fit: cover;
    width: 100%;
    height: 100px;
}

.navbar .bg2 {
    position: absolute;
    top: 0;
    color: transparent;
    width: 100%;
    height: 100px;
    background-color: #088C61;
    opacity: 0.8;
}

.nav-title div:nth-child(2) {
    display: flex;
    color: white;
}

.nav-title h1 {
    font-size: 15px;
    text-transform: capitalize;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.nav-title h1,
.nav-title p {
    color: white;
}

.content {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 10px;
    padding: 10px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.tabel-wraper {
    box-shadow: 5px 5px 5px #c3c3c3;
    padding: 12px;
    border-radius: 20px;
    background-color: white;
}

.list-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.list-menu i {
    font-size: 40px;
    color: #088C61;
}

.list-menu span p {
    margin: 0;
    font-size: 22px;
    text-align: end;
    font-weight: bold;
}

.list-menu span h1 {
    margin: 0;
    font-size: 14px;
    text-transform: capitalize;
}

.tabel-wraper {
    overflow-x: auto;
}

.tabel-wraper>div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.link {
    display: flex;
    align-items: center;
}

.tabel-wraper>div h1,
.tabel-wraper>div i {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #5E5D5D;
}

.tabel-container {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.tabel-container>thead th {
    background-color: #c3c3c3;
    text-align: left;
    text-wrap: nowrap;
    font-size: 12px;
    text-transform: capitalize;
    color: #4f4e4e;
}

.tabel-container tbody tr:last-child,
.tabel-container tbody tr:last-child:hover {
    background-color: white;
    border-bottom: none;
}

.tabel-container tbody tr {
    border-bottom: 1px solid #c1c1c1;
    font-size: 12px;
    color: #575757;
}

thead tr .sortable i {
    margin-left: 4px;
}

.tabel-container tbody tr:hover {
    background-color: #f1f1f1;
}

.tabel-container thead tr th,
.tabel-container tbody tr td {
    padding: 10px 10px;
}

.tabel-container .action-1 i:nth-child(1) {
    color: #088C61;
    cursor: pointer;
}

.tabel-container .action-1 i:nth-child(2) {
    color: red;
    cursor: pointer;
}

.online-container {
    width: 100%;
    background-color: white;
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 5px 5px 5px #c3c3c3;
}

.online-container>h1 {
    font-size: 16px;
    margin: 10px 0 0 10px;
    color: #5E5D5D;
}

.online-wraper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.online-wraper>span {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 4px;
}

.online-wraper>span img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.online-wraper>span div>span {
    font-size: 13px;
}

.online-wraper>span div>p {
    font-size: 8px;
}

.online {
    display: inline-block;
    width: 1px;
    height: 1px;
    margin-right: 10px;
    border-radius: 50%;
    transform: scale(0.5);
    transform-origin: center;
}

.online-green {
    background-color: #088C61;
}

.online-red {
    background-color: red;
}

.wrapper {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 10px 10px 10px #c1c1c1;
}

.content-tabel {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    overflow-x: auto;
}

.content-scan {
    display: flex;
    padding: 10px;
    flex-direction: row-reverse;
    gap: 15px;
}

.panduan-scan {
    background: #eef6ff;
    border-left: 4px solid #1a73e8;
    padding: 15px;
    box-shadow: 2px 2px 0 0 #d1d5db;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.panduan-scan h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a73e8;
}

.panduan-scan ul {
    padding-left: 20px;
}

.panduan-scan ul li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}


.content-tabel h1 {
    font-size: 14px;
    font-weight: 400;
}

.action {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    justify-content: space-between;
}

#perPage {
    outline: none;
    border: 1px solid #4f4e4e;
    padding: 4px;
}

#perPage option {
    padding: 6px;
    font-size: 14px;
    background: #ffffff;
    color: #333;
}

#perPage option:hover {
    background: #e5e5e5;
}


.action>div {
    display: flex;
    gap: 4px;
}

.action>div .add,
.action .add {
    background-color: #088C61;
    padding: 6px 15px;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    border: none;
}

.tabel-container {
    width: 100%;
    border-collapse: collapse;
}

.tabel-container thead {
    background-color: #c3c3c3;
    color: #333;
}

#maps {
    position: relative;
    z-index: 1;
}

.tabel-container tbody tr:hover {
    background-color: #f1f1f1;
}

.tabel-container th,
.tabel-container td {
    padding: 12px 15px;
}

.action-1 i:first-child {
    color: #088C61;
}

.action-1 i:last-child {
    color: red;
}

.add-action {
    display: none;
    position: fixed;
    top: 10%;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 4;
    overflow-y: auto;
}

.modal-content>div {
    width: 500px;
    background-color: white;
    border: 1px solid #c3c3c3;
    padding: 20px;
    border-radius: 15px;
}

.title-add {
    display: flex;
    justify-content: space-between;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form>span {
    display: flex;
    justify-content: end;
}

.form>span>button {
    justify-content: end;
    width: 20%;
    background-color: #088C61;
    color: white;
    padding: 6px 25px;
    cursor: pointer;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
}

.title-add {
    display: flex;
    justify-content: space-between;
}

.title-add>button {
    border: none;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form>div:nth-child(3),
.form>div:nth-child(2),
.form>.izin:nth-child(2),
.form>.izin:nth-child(4),
.form>.izin:nth-child(3),
.form>div:nth-child(4) {
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.form>.izin:nth-child(2)>.field>[type="date"] {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s ease;
}

.form>.izin:nth-child(2)>.field>[type="date"]:focus {
    border-color: #088C61;
    box-shadow: 0 0 3px #088C61;
    outline: none;
}

.form>div:nth-child(4)>div:nth-child(2)>div,
.form>.izin:nth-child(3)>div>div {
    flex-direction: row;
    gap: 10px;
}

.form .izin:nth-child(4) {
    flex-direction: column;
    align-items: start;
    gap: 0;
}

.form div label {
    text-transform: capitalize;
    color: #333;
    font-weight: 400;
}

.form div input,
.form div select,
.form div textarea {
    margin-top: 2px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #4f4e4e;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s ease;
}

.form div input:focus,
.form div select:focus,
.form div textarea:focus {
    border-color: #088C61;
    box-shadow: 0 0 3px #088C61;
    outline: none;
}

.pagination {
    display: inline-flex;
    padding: 6px;
    margin: 10px 0;
    list-style: none;
    gap: 6px;
    background: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pagination .page-link,
.pagination li.disabled span {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: all 0.25s ease;
}

.pagination .page-link:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.pagination li.active .page-link {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.4);
    cursor: default;
    transform: none;
}

.pagination li.disabled span {
    background: #f1f1f1;
    color: #aaa;
    border: 1px solid #e5e7eb;
    cursor: not-allowed;
}

.pagination li:first-child .page-link,
.pagination li:last-child .page-link {
    font-weight: bold;
}

.device {
    display: flex;
}

.device label {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    display: inline-block;
}

.device select {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    outline: none;
    background: #f9fafb;
    transition: 0.2s;
}

.device select:focus {
    border-color: #2563eb;
    background: #fff;
}

.frame {
    background-color: white;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 2px 2px #c1c1c1;
}

.frame .camera {
    margin-top: 15px;
    border-radius: 18px;
    overflow: hidden;
    background: white;
}

.hidden {
    display: none;
}

.form-container {
    font-family: Arial, sans-serif;
}

.form-container h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

/* GRID 2 KOLOM */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.readonly {
    background: #eee;
    cursor: not-allowed;
}

.preview-img {
    width: 110px;
    height: 110px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 10px;
    object-fit: cover;
}

.action-2 {
    display: flex;
    justify-content: space-between;
}

.action-2>button,
.action-2 a {
    margin-top: 20px;
    padding: 10px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.action-2 a {
    background-color: red;
    text-decoration: none;
}

.action-2>button:hover {
    background: #1e4bcc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {

    .contain-login {
        width: 90%;
        height: auto;
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }

    .ilustrasion img {
        width: 250px;
        margin: 0;
    }

    .profile-1 {
        display: flex;
    }

    .side-nav {
        display: none;
    }

    .updated-box {
        right: 20%;
        top: 40%;
    }

    .side-nav.aktif {
        display: block;
        opacity: 2;
        width: 280px;
    }

    .search input {
        width: 170px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}

@media (max-width: 768px) {

    .login {
        padding: 20px;
        height: auto;
    }

    .contain-login {
        width: 100%;
        gap: 10px;
        padding: 20px;
        border-radius: 15px;
    }

    .ilustrasion img {
        width: 200px;
    }

    .bulat {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
    }

    .bulat>div {
        width: 50px;
        height: 50px;
    }

    .bulat-right {
        width: 250px;
        height: 250px;
        top: -60px;
        right: -60px;
    }

    .bulat-right>div {
        width: 180px;
        height: 180px;
    }

    .header-container {
        padding: 5px 10px;
    }

    .title h1,
    .title span {
        font-size: 12px;
    }

    .title .bar {
        margin-left: 15px;
    }

    .side-nav {
        width: 266px;
    }

    .updated-box {
        top: 40%;
        right: 20%;
    }

    .main-container main {
        padding: 15px;
    }

    .content {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }

    .content-tabel {
        padding: 15px;
    }

    .tabel-container th,
    .tabel-container td {
        padding: 10px;
        font-size: 14px;
        white-space: nowrap;
    }

    .content-scan{
      flex-direction:column-reverse;
    }
    .action .add {
        padding: 8px 15px;
        font-size: 15px;
    }

    .modal-content>div {
        width: 90%;
        padding: 15px;
    }

    .form>span button {
        width: 40%;
    }
}

@media (max-width: 480px) {

    .contain-login {
        padding: 15px;
    }

    .form-login {
        width: 100%;
        padding: 20px;
    }

    .form-login input {
        font-size: 14px;
    }

    .form-login h1 {
        font-size: 16px;
    }

    .side-nav {
        width: 60px;
    }

    .nav-title {
        flex-direction: column;
        align-items: start;
        gap: 5px;
        left: 15px;
    }

    .updated-box {
        top: 40%;
        right: 5%;
        width: 80%;
        overflow-x: auto;
        scrollbar-width: 0;
    }

    .nav-title h1 {
        font-size: 18px;
    }

    .tabel-container {
        display: block;
        overflow-x: scroll;
    }

    .modal-content>div {
        width: 95%;
        padding: 12px;
    }

    .form>span button {
        width: 60%;
    }
    
}