body {
font-family: Arial, sans-serif;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.box {
border: 1px solid #ccc;
padding: 10px;
width: 40%;
text-align: center;
}
h2 {
margin: 0;
}
.list {
list-style-type: none;
padding: 0;
}
.list li {
margin: 5px 0;
cursor: pointer;
transition: background-color 0.3s, font-weight 0.3s;
}
.list li.selected {
background-color: #f0f0f0;
font-weight: bold;
}
.arrows {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 20%;
}
button {
font-size: 24px;
margin: 10px 0;
padding: 5px 10px;
cursor: pointer;
border: none;
background-color: #007bff;
color: #fff;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}