        /* Mesajların genel stili */
.messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease-in-out;
}

/* Başarı mesajı için stil */
.messages .alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

/* Hata mesajı için stil */
.messages .alert-danger {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Mesaj animasyonu */
.messages .alert {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* Fade-in animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Küçük ekranlar için responsive ayarlar */
@media (max-width: 768px) {
    .messages {
        font-size: 14px;
        padding: 10px;
    }
}