.bk-insurance-selector-section {
    border-radius: 8px;
    background: #fff;
}

.bk-insurance-selector-section h4 {
    margin: 0 0 10px;
    font-size: 15px;
}

.bk-insurance-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-direction: column;
}

.bk-insurance-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: none !important;
    text-transform: initial !important;
    text-align: left;
}

.bk-insurance-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.bk-insurance-btn.selected {
    background: #222222;
    color: white;
    border-color: #007cba;
}

/* Remove addon styles */
.stm-remove-addon-wrap {
    width: 30px;
    text-align: right;
    vertical-align: middle;
}

.stm-remove-addon {
    color: #cc0000 !important;
    font-size: 18px;
    display: inline-block;
    padding: 5px;
    transition: all 0.2s ease;
}

.stm-remove-addon:hover {
    color: #ff0000 !important;
    transform: scale(1.2);
}

.stm-remove-addon.loading {
    opacity: 0.5;
    pointer-events: none;
}

.stm-remove-addon.loading i {
    animation: stm_spin 1s linear infinite;
}

@keyframes stm_spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
