/* ===== LIVE INFO STYLES ===== */
.live-info {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
}

.live-info span {
    font-weight: 600;
    color: #333;
}

/* Registration Counter Styles */
.registration-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-value {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1.2;
}

.counter-message {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

/* Badge Styling */
.badge.bg-warning {
    padding: 8px 12px;
    font-size: 14px;
    display: inline-block;
}

/* Hero button styling */
#registerBtn {
    background-color: #2d6a4f;
    border-color: #2d6a4f;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#registerBtn:hover {
    background-color: #235c44;
    border-color: #235c44;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Make the event card more spacious */
.event-card {
    padding: 25px;
}
