* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #55557e;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    left: -45px;
}

.not-active {
    background-color: #3d3e52;
    width: 68px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-image, .finance-image, .gift-image, .pets-image {
    color: #aaaabf;
    width: 20px;
    height: 20px;
}

.active {
    background-color: #252525;
    width: 80px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
}

.cafe-image {
    color: #ffffff;
    width: 24px;
    height: 24px;
}

.not-active + .not-active {
    margin-left: 0;
    margin-right: 0;
}

.not-active:hover {
    background-color: #2f303f;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0px;
    width: 300px;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.top-panel {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.4),  /* semi-transparent black */
        rgba(0, 0, 0, 0.4)
      ),
    url(./img/food.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    width: 100%;
    height: 40%;
    padding: 24px;
}

.top-panel h2 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    top: 60px;
    left: -7px;
}

.location-icon {
    position: relative;
    width: 12px;
    height: 12px;
}

.locations {
    display: flex;
    align-items: center;
    position: relative;
    top: 50px;
    left: -67px;
    margin-top: 3px;
}

.top-panel span {
    font-size: 14px;
    color: #ffffff;
    margin-right: 2px;
}


.bottom-panel {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px; 
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-content span,.bottom-content p {
    font-size: 15px;
    color: #bbb1ae;
    margin: 0;
}

.bottom-content:hover p {
    font-size: 18px;
    color: #000000;
}

hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
}