.floating-menu {
position: fixed;
top: 20px;
right: 20px;
z-index: 100;
display: flex;
flex-direction: row-reverse;
align-items: center;
}

.menu-button {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #485fc7;
color: white;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
margin-left: 10px;
}

.menu-button:hover {
transform: scale(1.1);
}

.menu-items {
display: flex;
background: white;
border-radius: 50px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
overflow: hidden;
max-width: 0;
transition: max-width 0.3s ease, padding 0.3s ease;
height: 50px;
}

.menu-open .menu-items {
max-width: 300px;
padding: 0 10px;
}

.menu-item {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
position: relative;
color: #363636;
transition: color 0.2s;
}

.menu-item:hover {
color: #485fc7;
}

.menu-item .tooltip {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
background: #363636;
color: white;
padding: 5px 10px;
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
pointer-events: none;
z-index: 101;
}

.menu-item:hover .tooltip {
opacity: 1;
visibility: visible;
}

/* Modales */
.modal {
display: none;
}

.modal.is-active {
display: flex;
}

body {
font-family: Arial, sans-serif;
margin: 20px;
}

.container {
max-width: 400px;
margin: 0 auto;
}

label {
display: block;
margin-bottom: 10px;
}

input[type="date"],
input[type="number"] {
width: 100%;
padding: 8px;
margin-bottom: 20px;
}

button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}

button:hover {
background-color: #0056b3;
}

.resultado {
margin-top: 20px;
padding: 10px;
background-color: #f9f9f9;
border: 1px solid #ddd;
}