/* Drawer Overlay */
.draba-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.draba-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Panel */
.draba-calc-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .draba-calc-drawer {
        width: 100%;
    }
}

.draba-calc-drawer.active {
    transform: translateX(0);
}


/* Drawer Header */
.draba-drawer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: #0D1B2A;
    color: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
}

.draba-drawer-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: \'Cinzel\', serif;
    text-align: center;
}

.draba-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 20px;
}

/* Iframe Container */
.draba-drawer-content {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.draba-drawer-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}


