/**
 * Bulletin Actueel Button Styles
 * 
 * Styles for the actueel button functionality.
 * 
 * @author Hoeksche Waard Actief
 * @version 1.0.0
 */

/* Actueel Button Styles */
.bulletin-actueel-button-container {
    margin: 20px 0;
}

.bulletin-actueel-toggle {
    transition: all 0.2s ease;
}

.bulletin-actueel-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bulletin-actueel-toggle:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hwt-profile-img-bg {
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    object-fit: cover;
}

.avatar.hwt-profile-img-bg,
img.hwt-profile-img-bg {
    border-radius: 50% !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

.uk-comment .avatar.hwt-profile-img-bg {
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.um-avatar.hwt-profile-img-bg {
    border-radius: 50% !important;
    background: #fff !important;
} 

/* --- Custom styles for actueel-filter radio buttons --- */
.actueel-filter label {
    display: inline-block;
    margin-right: 18px;
    font-weight: 500;
    cursor: pointer;
}
.actueel-filter input[type="radio"] {
    margin-right: 6px;
}

/* Optionally, highlight the selected option */
.actueel-filter input[type="radio"]:checked + span {
    color: #6c3fc5;
    font-weight: bold;
} 