/* styles.css */


.Left-Menu{
    text-align: center;
    

}

.Left-Menu img{
    margin: 10px;
}

.Left-Menu .Menu_button {

    background: #F0F5FA; /* Gradient background */
    border-color: #B8BCC0;
    color: #1159A7; /* White text */
    padding: 0.7rem 3rem;/* Some padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    font-size: 1.44rem;
    margin: 0.3rem; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 0.6rem; /* Rounded corners */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3); /* Drop shadow */
    font-weight: bold; /* Bold text */
  
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    line-height: 1.5rem;
    transition: 0.2s;
    will-change: transform;

    width: 75%;

}

.Left-Menu .Menu_button:hover {
    background: #1159A7; /* Darker gradient on hover */
    color: #F0F5FA;
}
