/* Icon styles */
@import url('icon-style.css');


body {
    font-family: 'Cairo', sans-serif;
}

/* Drawer styles */
#drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%; /* Add more horizontal space */
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

#drawer.open {
    transform: translateX(0);
}

/* Overlay to detect clicks outside the drawer */
#drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 90;
}

#drawer-overlay.visible {
    opacity: 1;
    visibility: visible;
}