/* Event Registration Styles */

/* Participation Checkbox - matches the reference design */
.participation-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
}

.participation-checkbox:checked {
    background-color: white;
    border-color: white;
}

.participation-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF9500;
    font-size: 14px;
    font-weight: bold;
}

.participation-checkbox:disabled {
    cursor: default;
}

/* Registration button styling - always shown for logged in users */
.event-registration-btn {
    background: #FF9500 !important;
    color: white !important;
    padding: 8px 35px !important;
    text-decoration: none !important;
    font-weight: 300 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: none !important;
    cursor: default !important;
    transition: background-color 0.3s ease !important;
    text-align: left !important;
    justify-content: flex-start !important;
}

/* Compact view styling */
.event-registration-btn.compact {
    padding: 6px 20px !important;
    font-size: 11px !important;
    gap: 8px !important;
}

.event-registration-btn.compact .participation-checkbox {
    width: 16px;
    height: 16px;
}

.event-registration-btn span {
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.event-registration-btn:hover {
    background: #FF9500 !important;
}

/* Loading state for checkbox */
.event-registration-checkbox:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Ensure proper alignment */
.teaser-card__actions {
    display: flex;
    align-items: center;
}