/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/


.burger-container {
    width: 100%;
    max-width: 300px;
    font-family: Arial, sans-serif;
}

.burger-icon {
    background-color: #333;
    color: white;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
}

.burger-links {
    display: flex;
    flex-direction: column;
    background-color: #444;
    margin-top: 5px;
    border-radius: 4px;
    overflow: hidden;
}

.burger-links a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border-top: 1px solid #555;
}

.burger-links a:hover {
    background-color: #555;
}