
/* Modal container */
.home-popup-modal {
    border-radius: 12px;
    overflow: hidden;
}

/* Red close icon */
.popup-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background-color: #dc3545; /* Bootstrap danger */
    border-radius: 50%;
    opacity: 1;
    padding: 8px;
    z-index: 10;
}

.popup-close-btn::before {
    filter: invert(1);
}

/* Responsive modal height */
.modal-body {
    max-height: 80vh;
    overflow: hidden;
}

/* Scrollable description */
.popup-description {
    max-height: calc(80vh - 200px);
    overflow-y: auto;
    padding-right: 5px;
}

/* Smooth scrollbar */
.popup-description::-webkit-scrollbar {
    width: 6px;
}

.popup-description::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}