﻿/* Mesajlar */
.msg-label {
    position: fixed;
    top: 20px;
    right: -350px;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    animation: labelAnim 4s ease forwards;
    z-index: 9999;
}

.msg-success {
    background-color: #198754;
}

.msg-error {
    background-color: #dc3545;
}

.msg-warning {
    background-color: #ffc107;
    color: #000;
}

.msg-info {
    background-color: #0d6efd;
}

@keyframes labelAnim {
    0% {
        right: -350px;
        opacity: 0;
    }

    20% {
        right: 20px;
        opacity: 1;
    }

    80% {
        right: 20px;
        opacity: 1;
    }

    100% {
        right: -350px;
        opacity: 0;
    }
}
/* Mesajlar son */


/* Whatsapp*/
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .whatsapp-btn:hover {
        background-color: #1ebe5d;
        transform: scale(1.1);
        color: #fff;
    }
/**//* whatsapp sonu*/
