/* Gaya untuk lapisan latar belakang gelap */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Gaya untuk kotak popup */
.popup {
    background-color: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 400px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: large;
}

.popup p {
    font-weight: 500;
    margin-top: -1%;
}

/* Gaya untuk tombol "Batal" dalam popup */
.popup-button,
.popup-cancel-button {
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
    height: 30px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0 5px;
    box-shadow: 8px 8px 8px rgba(0,0,0,0.3);
}

.popup-button {
    background-color: #00B11C;
}
.popup-cancel-button {
    background-color: #F21919;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    gap: 20px;
}

.line-hr {
    height: 2px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.622);
}

.line-hr-1 {
    height: 1px;
    width: 100%;
    background-color: rgb(152, 152, 152);
}

.line-hr-orange {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #F13309 0%, #F90 100%);
}

.line-hr-orange-90 {
    margin-left: 20px;
    height: 2px;
    width: 97%;
    background: linear-gradient(90deg, #F13309 0%, #F90 100%);
}

.scroll {
    height: fit-content;
    max-height: 710px;
    overflow-y: scroll;
}

th {
    position: sticky;
    top: -3px;
    background: #343a40;
}

.tbl-container {
    max-height: 500px;
}

.back-logo{
    background-image: url('../img/polinema_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 120px;
    background-blend-mode: lighten;
    background-color: rgba(255, 255, 255, 0.7);
}

.star-wajib{
    color: orangered;
    font-size: 25px;
}

.input-password{
    width: 100%;
    border: 1px solid lightskyblue;
    height: 40px;
}

.input-akun:disabled{
    background-color: white;
}

/* gradient bawaan template */
.gradient-custom {
    background: #6a11cb;

    background: -webkit-linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));

    background: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1))
}

.input-custom{
    border-color: #0A2472;
    outline: none;
}

.input-custom:focus{
    box-shadow: none;
}

.back-login{
    background-image: url('/img/BangunanPoltek.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.back-login::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(rgba(106, 17, 203, 0.7),rgba(37, 117, 252, 0.7));
    pointer-events: none;
}
