.hidden {
  display: none;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px
}

/* Container for buttons */
.button-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* justify-content: space-evenly;
    align-items: center; */
    /* height: 100vh; */
    width: 100%;
  }
  
  /* Button style */
  .button {
    margin: 0px 0px 0px 10px;
    padding: 15px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    color: white;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  /* Button 1 */
  .button1 {
    background: linear-gradient(45deg, #ff6f61, #d24d34);
  }

  .button1:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #d24d34, #ff6f61);
  }
  
  /* Button 2 */
  .button2 {
    background: linear-gradient(45deg, #4caf50, #2e7d32);
  }
  
  .button2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #2e7d32, #4caf50);
  }
  
  /* Button 3 */
  .button3 {
    background: linear-gradient(45deg, #1e88e5, #1565c0);
  }
  
  .button3:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #1565c0, #1e88e5);
  }

  /* Button 3 */
  .button4 {
    padding: 5px 5px;
    background: linear-gradient(45deg, #0d76ef, #00ff8b);
    height: 37px;
    width: 37px;
    border-radius: 50px;
  }
  
  .button4:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(36deg, #ff0000, #f6b441);
  }

  .button5 {
    padding: 5px 5px;
    background: #d8e6ad;
    height: 37px;
    width: 37px;
    border-radius: 50px;
  }
  
  .button5:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: #72bcd4;
  }
  
  /* Input field styling */
.mobile_input {
  width: 8%;
  padding: 6px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease;
  height: 32px;
  margin-top: 5px;
}

.calendar-date-range {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 6px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s ease;
  width: 200px;
}
/* Focus effect on input field */
.input, .date-range:focus {
  outline: none;
  border-color: #4CAF50; /* Green color on focus */
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Placeholder styling */
.input::placeholder {
  color: #aaa;
  font-style: italic;
}
.pagination {
  /* margin: 25px; */
  padding: 20px;
  text-align: center;
  font-size: 26px;
  margin: 0px 0px 36px 10px;
  background: #cbe6ad;
  border-radius: 10px;
  color: #17606bd6;
}
.red-text {
  color: red;
}
