.acb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.acb-modal-content {
    background-color: #ffffff;
    color: #1d2327;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.acb-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1d2327;
}

.acb-modal-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px !important;
}

.acb-options {
    margin-bottom: 30px;
    display: grid;
    gap: 15px;
}

.acb-option {
    background-color: #f6f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
}

.acb-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    flex-wrap: wrap;
    row-gap: 10px;
}

.acb-option input[type="checkbox"] {
    margin-right: 15px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.acb-option strong {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.acb-option p {
    font-size: 13px;
    color: #50575e;
    line-height: 1.4;
    margin: 0;
}

.acb-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-direction: column-reverse;
}

.acb-btn {
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.acb-btn-primary {
    background-color: #4d5740;
    color: #ffffff;
}

.acb-btn-primary:hover {
    background-color: #4d5740;
}

.acb-btn-secondary {
    background-color: #D73B69;
    color: #fff;
    border: 1px solid #D73B69;
}

.acb-btn-secondary:hover {
    background-color: #D73B69;
}

.acb-btn-reject {
    background-color: #B8BCB3;
    color: #fff;
    width: 100%;
}

.acb-btn-reject:hover {
    color: #1d2327;
}

@media (max-width: 640px) {
    .acb-modal-buttons {
        flex-direction: column;
        width: 100%;
    }

    .acb-btn {
        width: 100%;
    }

    .acb-btn-reject {
        margin-right: 0;
        order: 3;
        /* Puts reject button at the bottom */
    }
}