.calendar-container {
  margin: 40px auto;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  transition: all 0.3s ease;
}

.add-sidebar input, .add-sidebar select {
  background-color: white;
}

/* Sidebar inside card */
.add-sidebar {
  position: absolute;
  top: 0;
  right: -320px;
  /* hidden by default */
  width: 300px;
  height: 100%;
  background-color: white;
  border-left: 1px solid #dee2e6;
  padding: 20px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 0;
  transition: right 0.3s ease;
  z-index: 10;
}

.add-sidebar.active {
  right: 0;
}

.add-sidebar h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

.add-sidebar input,
.add-sidebar select, .add-sidebar textarea {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ced4da;
}

.add-sidebar .btn {
  width: 100%;
  padding: 8px 12px;
  border-radius: 50px;
  border: none;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.add-sidebar .btn:hover {
  background: #0b5ed7;
}

.close-sidebar {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding: 20px;
  background-color: inherit;
  color: #343a40;
}

.calendar-header h5 {
  font-size: 1.6rem;
  font-weight: 800;
}

.btn-add-task {
  background: #0d6efd;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-add-task:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Timeline */
.timeline-wrapper {
  position: relative;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border-radius: 0.5rem;
}

/* Tasks Column */
.tasks-column {
  height: 400px;
  overflow: auto;
}

/* Task card */
.task {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 10px);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: #fff;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.task:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Task info */
.task-info strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.task-info small {
  font-size: 0.85rem;
}

/* Task actions */
.task-actions {
  display: flex;
  gap: 5px;
}

.task-actions button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.task-actions .edit-btn {
  background-color: #0dcaf0;
  color: #fff;
}

.task-actions .edit-btn:hover {
  background-color: #31d2f2;
  transform: scale(1.15) rotate(-5deg);
}

.task-actions .delete-btn {
  background-color: #dc3545;
  color: #fff;
}

.task-actions .delete-btn:hover {
  background-color: #e4606d;
  transform: scale(1.15) rotate(5deg);
}

/* Category colors */
.task-research {
  background-color: #198754;
}

.task-design {
  background-color: #0d6efd;
}

.task-learn {
  background-color: #ffc107;
  color: #212529;
}

.task-lunch {
  background-color: #dc3545;
}/*# sourceMappingURL=todolistDesign5.css.map */