/* ✅ Toggle Button Styles */
.menu-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 1100;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.menu-btn:hover {
    background: #004494;
}