:root {
    --primary-color: #4CAF50;
    --secondary-color: #4CAF50;
    --success-color: #4CAF50;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.status-icon {
    font-size: 4rem;
    margin: 1rem 0;
    color: var(--success-color);
    animation: checkmark 0.5s ease;
}

.status-text {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #333;
}

.sub-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.actions {
    margin-top: 1rem;
}

.route-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.route-btn:hover {
    background: #3d8b40;
}

@keyframes checkmark {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    .route-btn {
        font-size: 14px;
        padding: 10px;
    }
}