.dooplay-bottom-menu {
    display: flex;
    justify-content: space-around; /* jarak antar item */
    align-items: center;
    background-color: #111;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 9999;
}

.btm-menu-item {
    flex: 1; /* Sama rata */
    text-align: center;
    border-right: 1px solid rgb(71, 71, 71);
}

.btm-menu-item a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btm-menu-item .icon i {
    font-size: 20px;
}

.btm-menu-item .text {
    font-size: 12px;
    margin-top: 4px;
}

.search-popup-overlay {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* agar tetap enak di layar kecil */
    box-sizing: border-box;
    display: none;
}

.search-popup-box {
    background: #a1e15b;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: inline-block;
    top:30%;
}

.search-popup-box form {
    display: flex;
}

.search-popup-box span {
    color: #000;
    display: block;
    text-align: center;
    padding-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.search-popup-box input[type="search"] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
}

.search-popup-box input[type="submit"] {
    padding: 10px 15px;
    background-color: #111;
    color: white;
    border: none;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff3333;
    border: none;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

form.search-form {
    background: #000 !important;
    background-color: #000 !important;
    border-radius: 10px;
}



/* Sembunyikan di desktop */
@media (min-width: 768px) {
    .dooplay-bottom-menu {
        display: none;
    }
}
