/* Button Select (Radio) CSS */
.button-select-field-wrapper {
    width: 100%;
}

.pf-button-radio-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.pf-button-radio-label {
    flex: 1;
    margin: 0;
    cursor: pointer;
    display: block;
}

.pf-button-radio-input {
    display: none !important; /* Hide original radio */
}

.pf-button-radio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #1e1e1e; /* Dark background */
    border: 1px solid #333; /* Faint border */
    border-radius: 4px;
    color: #6a8b9e; /* Muted blueish grey text */
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
    text-align: center;
    height: 100%;
}

.pf-button-radio-label:hover .pf-button-radio-content {
    border-color: #555;
    color: #fff;
}

/* Selected State */
.pf-button-radio-input:checked + .pf-button-radio-content {
    border-color: #d11a2a; /* Red border */
    background-color: #2b181a; /* Very faint red tint to background */
    color: #ffffff; /* White text */
}

/* Responsive */
@media (max-width: 600px) {
    .pf-button-radio-group {
        flex-direction: column;
    }
}
