body {
    font-family: 'Poppins', sans-serif;
}

.alert {
    font-size: 0.9rem;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-close:focus {
    box-shadow: none;
}

.custom-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: calc(100% - 280px);
    background-color: #efe7d7;
    border-top: 3px solid #bdeb42;
    padding: 15px 30px;
    z-index: 1000;
}

/* Kontent sahəsinin footerin altında qalmamasın üçün padding */
.main-wrapper {
    padding-bottom: 70px;
}