.konten-mdl {
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
}

.popup-mdl {
    position: relative;
    padding-top: 50px;
    /* Add padding to make space for the logo */
}

.popup-mdl img.logo_utama {
    display: block;
    margin: 0 auto;
    width: 130px;
    height: auto;
    background-color: #ffffff;
    opacity: 88%;
    border-radius: 10%;
    margin-top: 2em;
    position: absolute;
    top: -45px;
    /* Move the logo up */
    left: 50%;
    transform: translateX(-45%);
}

.head_mdl {
    background-color: rgb(254, 219, 113);
    color: white;
    border-bottom: 1px solid #444;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head_mdl .modal-title {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
}

.body_mdl {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.body_mdl video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.body_mdl .content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.body_mdl .content img {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: 150px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .body_mdl .content img {
        width: 100%;
        height: auto;
    }

    .popup-mdl img.logo_utama {
        display: none;
        margin: 0 auto;
        width: 150px;
        height: auto;
        background-color: #ffffff;
        opacity: 88%;
        border-radius: 10%;
        margin-top: 0;
        position: absolute;
        top: 35px;
        /* Move the logo up */
        left: 50%;
        transform: translateX(-50%);
    }
}

.foter_mdl {
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    padding: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
}