/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Default: Desktop mode */
.event-register-card {
    position: static;

}

.action-buttons {
    max-width: 500px;
    width: 50%;
}

.action-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* ===== EVENT CARD STYLES ===== */
.event-card {
    font-family: 'Roboto', sans-serif;
    border: 2px solid rgba(238, 237, 242, 0.88);
    border-radius: 20px;
    box-shadow: none;
}

.register-tick {
    height: 38px;
}
.action-description {
    width: 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6c757d; /* Bootstrap's text-muted */
}

.sticky-footer-register-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100%;
    background: #fff;
    z-index: 1090;
}

@media (max-width: 767.98px) {
    .event-register-card {
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);        
    }
    .event-card {
        border-radius: 0 !important;
        border: 0 !important;
    }
    .event-card .card-body {
        border-radius: 0 !important;
        border: 0 !important;
    }
    .subtext{
        display: none;
    }
}


