/* MicroModal styles */
.modal {
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal__container {
    background: white;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Floating Get Involved Button */
.get-involved-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #cf4c54;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1000;
}