#cb-cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; border-radius: 0; display: none; }


.proplink A{
    color: #000000;  text-decoration: none;
    font-weight: bold;
}


.proplink A:link {
    color: #000000;  text-decoration: none;
    font-weight: bold;
}

.proplink A:visited {
    color: #000000;  text-decoration: none;
    font-weight: bold;
}

.proplink A:hover {
    color: blue; text-decoration: none;
}
.modal.fade .modal-dialog {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

.modal-body {
    padding-left: 1rem;
}

.modal-header {
    border-bottom: 1px solid #eee;
}

.confirmation-modal-heading {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.benefit-list {
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 20px;
}

/* When there are more than 4 items, switch to 2 columns */
.benefit-list.multi-column {
    grid-template-columns: repeat(2, 1fr);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-left: 0;
    text-align: left;
}

.benefit-icon {
    color: #28a745;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.modal-footer {
    border-top: none;
    padding-top: 0;
}

.btn-outline-danger {
    border-width: 2px;
}

/* Make it single column on small screens */
@media (max-width: 576px) {
    .benefit-list.multi-column {
        grid-template-columns: 1fr;
    }
}