/* Inscription Page Specific Styles */
[v-cloak] {
    display: none;
}

.form-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.price-badge {
    display: inline-block;
    background: rgba(30, 60, 114, 0.3);
    border: 1px solid rgba(30, 60, 114, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 10px;
}
.price-badge.free {
    background: rgba(46, 213, 115, 0.2);
    border-color: rgba(46, 213, 115, 0.4);
    color: #2ed573;
}

.step-content h3 {
    margin-bottom: 20px;
    color: #ffd700;
}

.club-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.input-group input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.judokas-section .warning-text {
    font-size: 0.85rem;
    color: #ffaa00;
    margin-bottom: 15px;
}

.judoka-row {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.judoka-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.btn-remove {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.btn-remove:hover {
    transform: scale(1.1);
}

.judoka-fields {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.5fr 1fr 1.5fr;
    gap: 10px;
    align-items: end;
}

.judoka-fields .field {
    display: flex;
    flex-direction: column;
}

.field label {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.7);
}

.field input, .field select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: inherit;
}

.field select option {
    background: #1e3c72;
    color: white;
}

.btn-add {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.3);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}
.btn-add:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.form-actions {
    margin-top: 30px;
    text-align: right;
}
.form-actions.split {
    display: flex;
    justify-content: space-between;
}

.btn-next, .btn-primary {
    padding: 12px 25px;
    background: #ffd700;
    color: #111;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}
.btn-next:disabled, .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-next:not(:disabled):hover, .btn-primary:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    padding: 12px 25px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
}

/* Summary Styles */
.summary-box {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}
.summary-table th, .summary-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.summary-table th {
    background: rgba(255,255,255,0.1);
    font-weight: 600;
}
.total-box {
    text-align: right;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffd700;
}
.total-box .small-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* Success Styles */
.success-content {
    text-align: center;
}
.success-icon {
    font-size: 4rem;
    color: #2ed573;
    margin-bottom: 20px;
}
.payment-box {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.qrcode-container {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px 0;
}
.bank-details {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
}
.bank-details p {
    margin: 5px 0;
    font-size: 0.95rem;
}
.bank-details .highlight {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.error-msg {
    color: #ff4757;
    margin-top: 15px;
    text-align: center;
}

.judoka-grid {
    display: grid;
    grid-template-columns: 120px 2fr 2fr 80px 1.5fr 100px 100px 40px;
    gap: 8px;
    align-items: center;
}

@media (max-width: 900px) {
    .judoka-fields {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }
    .judoka-row-headers { display: none; }
    .judoka-grid {
        grid-template-columns: 1fr 1fr;
    }
    .judoka-grid > div:first-child { grid-column: span 2; }
    .judoka-grid > button, .judoka-grid > div:last-child { grid-column: span 2; text-align: right; }
}

@media (max-width: 768px) {
    .club-section {
        flex-direction: column;
        gap: 15px;
    }
    .judoka-fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .judoka-fields {
        grid-template-columns: 1fr;
    }
    .judoka-grid { grid-template-columns: 1fr; }
    .judoka-grid > div:first-child { grid-column: span 1; }
    .judoka-grid > button, .judoka-grid > div:last-child { grid-column: span 1; text-align: left; }
}
.field input, .field select { min-width: 0; width: 100%; box-sizing: border-box; } 
.age-badge { font-size: 0.9em; color: #ffd700; font-weight: normal; margin-left: 5px; } 
