/* Member Card Styles */
.member-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    position: relative;
}

.member-card .member-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #63b161;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.member-card .remove-member {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-card .remove-member:hover {
    background: #c82333;
}

/* Checkbox Infant Styles */
.checkbox-infant {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.checkbox-infant input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-infant label {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* API Error Alert Styles */
.alert-api-error {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-api-error ul {
    margin: 0;
    padding-left: 20px;
}

/* Registration Page Banner */
.page-banner-area.registration-banner {
    background-image: url('../images/register/register.png');
}

/* Registration Area Background */
.registration-area {
    background: #f5f7fa;
}

/* Package Badge Style */
.badge-package-code {
    font-size: 14px;
}

/* WhatsApp Contact Link */
.whatsapp-contact-link {
    color: #63b161;
}

/* Hidden Element Utility */
.hidden-element {
    display: none;
}
