/* Styling für Erfolgs- und Statusmeldungen */

.success-message {
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 2rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.success-message h3 {
    color: #4CAF50;
    margin-top: 0;
    font-weight: 500;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.success-message .btn {
    margin-top: 1.5rem;
}

/* Varianten für andere Meldungstypen */
.info-message h3 {
    color: #2196F3;
}

.warning-message {
    background-color: #fff8e1;
}

.warning-message h3 {
    color: #FF9800;
}

.error-message {
    background-color: #ffebee;
}

.error-message h3 {
    color: #F44336;
}

/* Responsive Anpassungen */
@media only screen and (max-width: 600px) {
    .success-message {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
}