.register-wrapper {
  
    display: flex;
  
    justify-content: center;
    padding: 40px 16px;
    
}

.register-card {
    width: 100%;
    max-width: 420px;
    background: #c9f7ff;
    border-radius: 32px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    padding: 40px 32px 32px;
    text-align: center;
}

.register-logo img {
    max-width: 180px;
}

.register-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #00335a;
}

.register-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 28px;
}

.register-form .form-group {
    text-align: left;
    margin-bottom: 14px;
}

.register-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #00335a;
}

.register-form input {
    width: 100%;
    border-radius: 16px;
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.register-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffd54f;
}

.register-btn {
    width: 100%;
    margin-top: 18px;
    border: none;
    border-radius: 18px;
    padding: 12px 16px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 0 #e5b800;
}

.register-btn:hover {
    background-color: #ffe04d;
}

.register-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 18px;
    color: #999;
    font-size: 13px;
}

.register-divider span:first-child,
.register-divider span:last-child {
    flex: 1;
    height: 1px;
    background-color: #d4d4d4;
}

.register-login-text {
    font-size: 13px;
    color: #666;
}

.register-login-link {
    color: #1b2aff;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
}

.register-login-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .register-card {
        padding: 32px 20px 24px;
        border-radius: 24px;
    }

    .register-title {
        font-size: 22px;
    }
}

/* Verify Code Styles */
.verify-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
}

.verify-card {
    width: 100%;
    max-width: 420px;
    background: #c9f7ff;
    border-radius: 32px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    padding: 40px 32px 32px;
    text-align: center;
}

.verify-logo img {
    max-width: 180px;
}

.verify-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #00335a;
}

.verify-subtitle {
    font-size: 14px;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.5;
}

#phone-display {
    font-weight: 600;
    color: #00335a;
}

.code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.code-input,
input.code-input,
.verify-form .code-input {
    width: 50px;
    height: 50px;
    border: 2px solid #9c27b0 !important;
    border-radius: 15px !important;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #00335a !important;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.code-input:focus {
    outline: none;
    border-color: #7b1fa2;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
    transform: scale(1.05);
}

.code-input:invalid {
    border-color: #d32f2f;
}

.timer-container {
    margin-bottom: 24px;
}

.timer-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

#timer {
    font-weight: 700;
    color: #00335a;
}

.verify-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 12px 16px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 0 #e5b800;
    transition: all 0.2s ease;
}

.verify-btn:hover:not(:disabled) {
    background-color: #ffe04d;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #e5b800;
}

.verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.verify-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resend-link {
    color: #1b2aff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

.back-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #00335a;
}

.back-link i {
    font-size: 12px;
}

@media (max-width: 576px) {
    .verify-card {
        padding: 32px 20px 24px;
        border-radius: 24px;
    }

    .verify-title {
        font-size: 22px;
    }

    .code-input,
    input.code-input,
    .verify-form .code-input {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 15px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    .code-inputs {
        gap: 8px;
    }
}

/* Kids (Children) Page Styles */
.kids-page {
    padding: 32px 16px 64px;
}

.kids-tabs {
    max-width: 960px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.kids-tab {
    min-width: 140px;
    padding: 10px 24px;
    border-radius: 24px;
    background: #ffd731;
    color: #1f1f25;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 0 #e5b800;
    transition: all 0.2s ease;
}

.kids-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #e5b800;
}

.kids-tab.active {
    background: #fff;
    box-shadow: 0 5px 0 #c5c5c5;
}

.kids-tab-exit {
    background: #ff4b5c;
    color: #fff;
    box-shadow: 0 5px 0 #d2303f;
}

.kids-tab-exit:hover {
    box-shadow: 0 7px 0 #d2303f;
}

.kids-content {
    max-width: 1100px;
    margin: 0 auto;
}

.kids-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #001b44;
    margin-bottom: 40px;
}

.kids-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.kids-card {
    background: #c9f7ff;
    border-radius: 32px;
    padding: 24px 28px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kids-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.kids-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.kids-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kids-info .kids-name {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
    color: #001b44;
}

.kids-info .kids-age {
    font-size: 14px;
    color: #555;
}

.kids-subscription {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.kids-subscription-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.kids-subscription-status .label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.kids-subscription-status .status {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kids-subscription-status .status.active {
    background: #e0fbe2;
    color: #1b5e20;
}

.kids-subscription-status .status .icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4caf50;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.kids-subscription-date {
    font-size: 13px;
    color: #777;
}

.kids-subscription-date strong {
    color: #444;
}

.kids-card-add {
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.kids-add-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffd731;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: #4a2acb;
    box-shadow: 0 8px 0 #e5b800;
    margin-bottom: 12px;
}

.kids-add-text {
    font-size: 16px;
    font-weight: 700;
    color: #001b44;
}

.kids-note {
    margin-top: 28px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .kids-cards {
        grid-template-columns: 1fr;
    }

    .kids-card {
        padding: 20px 18px;
    }

    .kids-page {
        padding: 24px 12px 48px;
    }
}

/* My Account Page Styles */
.account-page {
    padding: 32px 16px 64px;
}

.account-content {
    max-width: 600px;
    margin: 0 auto;
}

.account-card {
    background: #c9f7ff;
    border-radius: 32px;
    padding: 24px 32px 28px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
}

.account-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.account-lines span {
    display: block;
    font-size: 14px;
    color: #333;
}

.account-lines span:first-child {
    font-weight: 700;
    margin-bottom: 4px;
}

.account-status {
    font-size: 13px;
    color: #1b5e20;
    font-weight: 700;
}

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.account-btn-edit {
    background: #ffd731;
    color: #002244;
    box-shadow: 0 5px 0 #e5b800;
}

.account-btn-edit:hover {
    background: #ffe04d;
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #e5b800;
}

.account-btn-logout {
    background: #ff9ea8;
    color: #3c0b12;
    box-shadow: 0 5px 0 #e57b86;
}

.account-btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #e57b86;
}

@media (max-width: 576px) {
    .account-card {
        padding: 20px 20px 24px;
        border-radius: 24px;
    }

    .account-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Checkout Page Styles */
.checkout-page {
    padding: 32px 16px 64px;
}

.checkout-content {
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-columns {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 24px;
}

.checkout-card {
    background: #c9f7ff;
    border-radius: 32px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    padding: 28px;
}
.checkout-card-left {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    padding: 10px;
}
.checkout-card-right {
    background: #dff0ff;
}

.checkout-heading {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #001b44;
}

.checkout-visual-card {
    background: linear-gradient(135deg, #4a2acb, #61a0ff);
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.checkout-visual-card .cv-chip {
    width: 28px;
    height: 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
}

.checkout-visual-card .cv-number {
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.checkout-visual-card .cv-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.checkout-visual-card .cv-name {
    font-size: 12px;
    font-weight: 600;
}

.checkout-visual-card .cv-brand {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
    margin-bottom: 12px;
    display: block;
}

.checkout-visual-card .cv-exp {
    font-size: 12px;
    text-align: right;
    display: block;
}

.checkout-form {
    margin-bottom: 12px;
}

.checkout-form-group {
    margin-bottom: 10px;
}

.checkout-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #00335a;
}

.checkout-form-group input {
    width: 100%;
    border-radius: 14px;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
}

.checkout-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkout-iyzico-wrapper {
    margin-top: 8px;
    width: 100%;
    background-color: #c9f7ff;
    padding: 0;
}
#checkoutform-box{
    margin-top: 8px;
    width: 100%;
    max-width: 100%!important;
    background-color: #c9f7ff;
    padding: 0!important;
}
#iyzipay-checkout-form {
    width: 100% !important;
    background-color: #c9f7ff !important;
    margin: 0;
    padding: 0;
}

#iyzipay-checkout-form iframe {
    width: 100% !important;
    display: block;
}

.checkout-package-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cp-title {
    font-size: 15px;
    font-weight: 700;
    color: #001b44;
}

.cp-subtitle {
    font-size: 12px;
    color: #555;
}

.cp-duration {
    font-size: 13px;
    font-weight: 700;
    color: #001b44;
}

.checkout-summary {
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
}

.cs-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cs-divider {
    border-top: 1px dashed #c2c2c2;
    margin: 10px 0;
}

.cs-total span:last-child {
    font-weight: 800;
    font-size: 15px;
    color: #001b44;
}

.checkout-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 12px 16px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 0 #e5b800;
    transition: all 0.2s ease;
}

.checkout-btn:hover {
    background-color: #ffe04d;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #e5b800;
}

@media (max-width: 768px) {
    .checkout-columns {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        border-radius: 24px;
        padding: 20px 18px 22px;
    }
}

/* Global loading overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay-image {
    max-width: 140px;
    height: auto;
}

/* Result popup */
.result-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.result-popup-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 32px 24px;
    max-width: 320px;
    width: 90%;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.result-popup-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
}

.result-popup-title {
    font-size: 18px;
    font-weight: 800;
    color: #001b44;
    margin-bottom: 8px;
}

.result-popup-message {
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
}

.result-popup-button {
    border: none;
    border-radius: 18px;
    padding: 10px 18px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 0 #e5b800;
    min-width: 140px;
}

.result-popup-button:hover {
    background-color: #ffe04d;
    transform: translateY(-1px);
    box-shadow: 0 7px 0 #e5b800;
}

/* Payment Success Page Styles */
.payment-success-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
   
    padding: 20px 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.payment-success-card {
    width: 100%;
    max-width: 420px;
    background: #c9f7ff;
    border-radius: 32px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    padding: 48px 32px 40px;
    text-align: center;
}

.payment-success-title {
    font-size: 24px;
    font-weight: 800;
    color: #001b44;
    margin-bottom: 32px;
}

.payment-success-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-checkmark {
    width: 120px;
    height: 120px;
}

.success-checkmark-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.6s ease-in-out;
}

.success-checkmark-circle.animate-circle {
    stroke-dashoffset: 0;
}

.success-checkmark-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.4s ease-in-out 0.3s;
}

.success-checkmark-check.animate-check {
    stroke-dashoffset: 0;
}

.payment-success-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 14px 20px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 0 #e5b800;
    transition: all 0.2s ease;
}

.payment-success-btn:hover {
    background-color: #ffe04d;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #e5b800;
}

.payment-success-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 #e5b800;
}

.payment-error-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .payment-success-card {
        padding: 40px 24px 32px;
        border-radius: 24px;
    }

    .payment-success-title {
        font-size: 22px;
    }

    .success-checkmark {
        width: 100px;
        height: 100px;
    }
}

/* Add Child Form Styles */
.add-child-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.add-child-card {
    width: 100%;
    max-width: 480px;
    background: #c9f7ff;
    border-radius: 32px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    padding: 40px 32px 32px;
}

.add-child-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.add-child-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #CCE8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.add-child-icon-circle i {
    font-size: 24px;
    color:rgba(4, 9, 58, 0.3)
}

.add-child-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.add-child-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-child-form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #001b44;
}

.add-child-input,
input.add-child-input,
select.add-child-input,
.add-child-form .add-child-input,
.add-child-form input,
.add-child-form select {
    width: 100%;
    border-radius: 16px;
    border: none !important;
    padding: 12px 16px;
    font-size: 14px;
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #001b44 !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.add-child-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffd54f;
}

.add-child-input::placeholder {
    color: #999;
}

.add-child-input option,
select.add-child-input option {
    color: #001b44;
    background: #ffffff;
}

/* Select dropdown için özel stil */
.add-child-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23001b44' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.add-child-btn {
    width: 100%;
    margin-top: 8px;
    border: none;
    border-radius: 18px;
    padding: 14px 20px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 0 #e5b800;
    transition: all 0.2s ease;
}

.add-child-btn:hover {
    background-color: #ffe04d;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #e5b800;
}

.add-child-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 #e5b800;
}

/* Avatar Selection Popup Styles */
.avatar-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.avatar-popup-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px 28px 28px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.avatar-popup-title {
    font-size: 20px;
    font-weight: 800;
    color: #001b44;
    text-align: center;
    margin-bottom: 24px;
}

.avatar-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.avatar-option {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option:hover {
    transform: scale(1.05);
    border-color: #ffd54f;
}

.avatar-option.selected {
    border-color: #4a2acb;
    box-shadow: 0 0 0 4px rgba(74, 42, 203, 0.2);
}

.avatar-popup-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 12px 20px;
    background-color: #ffd731;
    color: #002244;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 0 #e5b800;
    transition: all 0.2s ease;
}

.avatar-popup-btn:hover {
    background-color: #ffe04d;
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #e5b800;
}

.avatar-popup-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 #e5b800;
}

@media (max-width: 576px) {
    .add-child-card {
        padding: 32px 24px 28px;
        border-radius: 24px;
    }

    .add-child-icon-circle {
        width: 70px;
        height: 70px;
    }

    .add-child-icon-circle i {
        font-size: 30px;
    }

    .avatar-popup-card {
        padding: 28px 20px 24px;
        border-radius: 24px;
    }

    .avatar-selection-grid {
        gap: 16px;
    }
}

