@import url(style.css);

.timeline-container {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin: 0 4rem;
    font-family: Arial, sans-serif;
    left:50px;
    bottom: 10px;
  }
  
  .timeline-container label {
    font-size: 16px;
    font-weight: bold;
  }
  
  .timeline-container select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .timeline-container select:focus {
    border-color: #007bff; 
  }
  
  .timeline-container select option {
    padding: 8px;
  }
  
  .timeline-container select:hover {
    cursor: pointer;
    border-color: #007bff;
  }
  