﻿.confirmation-container {
    max-width: 480px;
    margin: 80px auto 40px;
}

.confirmation-panel {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.panel-header {
    background: linear-gradient(135deg, #0C4930 0%, #072b1c 100%);
    color: white;
    padding: 32px 24px;
    text-align: center;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .status-icon i {
        font-size: 40px;
    }

.panel-header h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
}

.panel-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
}

.panel-body {
    padding: 40px 32px;
    text-align: center;
}

.message-box {
    margin-bottom: 32px;
}

.message-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.alert-box {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.alert-icon {
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary {
    flex: 1;
    height: 48px;
    background: linear-gradient(135deg, #0C4930 0%, #072b1c 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(12, 73, 48, 0.4);
        color: white;
        text-decoration: none;
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-primary i {
        margin-right: 8px;
    }

.btn-secondary {
    flex: 1;
    height: 48px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .btn-secondary:hover {
        background: #e9ecef;
        border-color: #0C4930;
        color: #0C4930;
        text-decoration: none;
    }

.app-logo {
    text-align: center;
    margin-bottom: 24px;
}

    .app-logo img {
        max-height: 48px;
        max-width: 200px;
        object-fit: contain;
    }

.instructions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
    text-align: left;
}

    .instructions h4 {
        margin: 0 0 12px 0;
        color: #0C4930;
        font-size: 15px;
        display: flex;
        align-items: center;
    }

        .instructions h4 i {
            margin-right: 8px;
        }

    .instructions ul {
        margin: 0;
        padding-left: 20px;
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    .instructions li {
        margin-bottom: 8px;
    }

.contact-support {
    margin-top: 24px;
    padding: 16px;
    background: #e8f5ee;
    border-radius: 8px;
    border-left: 4px solid #0C4930;
    text-align: left;
}

    .contact-support h4 {
        margin: 0 0 8px 0;
        color: #0C4930;
        font-size: 15px;
        display: flex;
        align-items: center;
    }

        .contact-support h4 i {
            margin-right: 8px;
        }

    .contact-support p {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.5;
    }
