#abb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#abb-modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 80%; /* Responsive for mobile */
    width: 400px; /* Default for desktop */
    box-sizing: border-box;
}

#abb-modal-content p {
    margin-bottom: 15px;
}

#abb-modal-content button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
    #abb-modal-content {
        max-width: 90%;
        padding: 15px;
    }
}
