/* Основной контент */
.content {
    padding: 25px 20px;
}

/* QR-код секция */
.qr-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #2a7a2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-container {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qrcode {
    width: 170px;
    height: 170px;
}

#qrcode img {
    width: 100% !important;
    height: 100% !important;
}

.qr-instruction {
    font-size: 14px;
    color: #8ba3c7;
    line-height: 1.5;
    max-width: 300px;
}

/* Секция с копируемыми данными */
.data-section {
    background-color: #ffffff0d;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #377a2a;
}

.data-item {
    margin-bottom: 20px;
}

.data-item:last-child {
    margin-bottom: 0;
}

.data-label {
    font-size: 14px;
    color: #e1e1e1;
    margin-bottom: 8px;
    font-weight: 500;
}

.data-container {
    background-color: #ffffff0d;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #377a2a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.data-value {
    font-size: 14px;
    color: #e1e1e1;
    font-weight: 500;
    word-break: break-all;
    flex: 1;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
}

.copy-btn {
    background-color: #e1e1e1;
    color: #1f7824;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: translateY(-2px);
}

.copy-btn.copied {
    background: #2ecc71;
    animation: copiedPulse 0.5s;
}

@keyframes copiedPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.copy-btn i {
    font-size: 18px;
}

.amount-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f7824;
}

/* Кнопки действий */
.buttons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn {
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-confirm {
    background-color: #1f7824;
    color: #e1e1e1;
}

.btn-cancel {
    background-color: #b22222 ;
    color: #e1e1e1;
}

.btn:hover {
    transform: translateY(-2px);

}


.btn:active {
    transform: translateY(0);
}

/* Таймер */
.timer-section {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #39ff071a;
    border-radius: 10px;
}

.timer-label {
    font-size: 14px;
    color: #07ff13ce;
    margin-bottom: 5px;
}

.timer {
    font-size: 24px;
    font-weight: 700;
    color: #07ff13ce;
    font-family: 'Courier New', monospace;
}