.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 30%;
        padding: 10px 0;
        text-align: center;
    }

    .logo a h1 {
        font-size: 16px !important;
    }

    .nav-list li a {
        margin: 40px 0;
    }

    .nav-list.active {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }


    /* Toast Notification Styles */
    .toast {
        visibility: hidden;
        min-width: 250px;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 12px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        font-size: 16px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .toast.show {
        visibility: visible;
        animation: fadein 0.5s, fadeout 0.5s 3s;
    }

    @keyframes fadein {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeout {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

}