/* Header.css */

.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    width: 200px;
    position: absolute;
    top: 10px;
    right: 10px;
    /* z-index: 12; */
}
.img {
    width: 45px;
}

.logo-icon {
    width: 45px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    border-radius: 50%; /* Circular shape */
}

.logo-icon:hover {
    transform: translateY(-5px); /* Raise the icon slightly */
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3); /* Add a shadow for depth */
}

.settings-icon {
    width: 45px;
    height: 45px;
}

.menu-item-image {
    width: 45%;
    height: 45%;
}

.header-right {
    display: flex;
    align-items: center;
}

.menu-label hr {
    border: none;
    height: 1px;
    background-color: #eaeaea; /* Light grey line, adjust color as needed */
    margin-top: 0; /* Adjust the space between the text and the line as needed */
}
.menu-label {
    margin-top: 20px;
}

.menu-label-hr {
    border: none;
    height: 1px;
    background-color: #eaeaea;
    margin-top: 5px;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.menu-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Adjust this value as needed */
}


/* Customize menu */



.settingsMenu{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

.customize-menu span{
    display: flex;
    align-items: center;
}