.timeman-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.toggle-button {
    font-size: 24px;
    font-weight: bold;
    background-color: #1cae6a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-button:hover {
    background-color: #1a2033;
}

.toggle-button.active {
    background-color: #1a2033;
    transform: rotate(45deg);
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    min-width: 200px;
}

.dropdown-button {
    color: white;
    background: #1cae6a;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 124, 204, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.dropdown-button:hover {
    background: #1a2033;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 124, 204, 0.5);
}

.dropdown-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 124, 204, 0.4);
}
