.camp-container {
    max-width: 1280px;
    margin: 0 auto;
}

.camp-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    background: linear-gradient(135deg, #2c6e49, #40916c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 8px;
}

.camp-sub {
    text-align: center;
    color: #6c584c;
    margin-bottom: 40px;
    font-size: 15px;
}

.camp-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}

@media (max-width: 800px) {
    .camp-grid {
        grid-template-columns: 1fr;
    }
}

.camp-info-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0e3d4;
    position: sticky;
    top: 20px;
}

.camp-price-big {
    text-align: center;
    border-bottom: 2px dashed #fae1c3;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.camp-price-big .label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7e7a74;
}

.camp-price-big .value {
    font-size: 56px;
    font-weight: 800;
    color: #2c6e49;
}

.camp-accommodation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.camp-accommodation-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9e2d8;
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.camp-accommodation-list li strong {
    min-width: 130px;
    color: #2c6e49;
}

.camp-payment-box {
    background: #faf5eb;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-top: 24px;
}

.camp-phone-copy {
    font-size: 24px;
    font-weight: 700;
    font-family: monospace;
    background: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 60px;
    cursor: pointer;
    margin: 12px 0;
    transition: 0.2s;
    color: #1b4d3e;
}

.camp-phone-copy:hover {
    background: #2c6e49;
    color: white;
}

.camp-form {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.camp-field {
    margin-bottom: 22px;
}

.camp-field label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #2d2a26;
}

.camp-field input, .camp-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e6e0d5;
    border-radius: 16px;
    font-size: 14px;
    transition: 0.2s;
}

.camp-field input:focus, .camp-field select:focus {
    outline: none;
    border-color: #2c6e49;
}

.child-block {
    background: #fefcf8;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    border-left: 4px solid #d4a373;
    position: relative;
}

.remove-child {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff0e8;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #bc6c25;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.remove-child:hover {
    background: #bc6c25;
    color: white;
}

.add-child-btn {
    background: #f0f4ec;
    border: 2px dashed #c0d6b3;
    border-radius: 20px;
    padding: 14px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #2c6e49;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    margin-bottom: 20px;
}

.add-child-btn:hover {
    background: #e8f0e2;
    border-color: #2c6e49;
}

.camp-total {
    background: #eef5ea;
    text-align: center;
    padding: 16px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 800;
    margin: 20px 0;
}

.camp-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.camp-btn {
    background: #2c6e49;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}

.camp-btn:hover {
    background: #1b4d3e;
    transform: translateY(-2px);
}

.camp-btn:disabled {
    background: #b8c9b0;
    cursor: not-allowed;
    transform: none;
}

.error-txt {
    color: #bc6c25;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.success-txt {
    color: #2c6e49;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

.children-section-title {
    font-weight: 600;
    margin: 10px 0 12px;
    color: #2c6e49;
    font-size: 16px;
}

.empty-children-message {
    text-align: center;
    padding: 30px 20px;
    background: #fafaf7;
    border-radius: 20px;
    color: #aaa6a0;
    font-size: 14px;
    margin-bottom: 16px;
}

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.registered-table {
    width: 100%;
    border: 1px solid #e4e4e4;
}

.registered-table tr, td, th {
    border: 1px solid #e4e4e4;
    padding: 4px;
}


.t-col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    float: left;
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
}

.t-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0;
}

.telegram-channel {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 6px 12px;
    background: #eef5ea;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: #2c6e49;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.telegram-channel:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #2c6e49;
    color: #ffffff;
}