.status-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
    display: none;
}

.status-message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 2px solid #38a169;
}

.status-message.error {
    background: #ffeaea;
    color: #e53e3e;
    border: 2px solid #e53e3e;
}

.status-message.info {
    background: #F5F1E3;
    color: #2F5233;
    border: 2px solid #2F5233;
}

.message-output {
    margin-top: 24px;
    display: none;
}

.confirmation-card {
    background: #c6f6d5;
    border: 2px solid #38a169;
    border-radius: 12px;
    padding: 28px;
    margin-top: 20px;
}

.confirmation-card h2 {
    color: #22543d;
    margin-bottom: 16px;
    font-size: 24px;
}

.confirmation-content {
    color: #22543d;
    line-height: 1.8;
}

.confirmation-content ul, .confirmation-content ol {
    margin: 16px 0;
    padding-left: 20px;
}

.confirmation-content p {
    margin-bottom: 12px;
}

.confirmation-content strong {
    font-weight: 600;
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-info {
    background: #F5F1E3;
    color: #2F5233;
    border: 2px solid #2F5233;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.notification.success {
    background-color: #2F5233;
}

.notification.error {
    background-color: #a8312f;
}

.notification.info {
    background-color: #2F5233;
    opacity: 0.9;
}
