/* SafeHaven - Result Page Styles */

/* This file extends EvacuationResult.css */
.result-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.result-message {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon.success {
    background: #d1fae5;
    color: #065f46;
}

.result-icon.error {
    background: #fee2e2;
    color: #991b1b;
}
