here you go  i will send you the whole css fix the css the whole to work 


:root {
  --primary: #8f7cff;
  --secondary: #ffd369;
  --dark: #0f172a;
  --glass: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.25);
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b1020;
  color: white;
}

/* ========================= */
/* MAIN CONTAINER */
/* ========================= */
.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}


/* ========================= */
/* MENU */
/* ========================= */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #d0d0d0;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hover */
.menu li:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

/* Active */
.menu li.active {
  background: var(--primary);
  color: white;
  font-weight: 700;
  box-shadow: 0px 8px 25px rgba(143, 124, 255, 0.35);
}

/* ========================= */
/* CALENDAR BOX */
/* ========================= */
.calendar-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 14px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
}

/* Calendar Button */
.cal-btn {
  background: var(--primary);
  border: none;
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  transition: 0.25s ease;
}

.cal-btn:hover {
  background: var(--secondary);
  color: #111;
  transform: scale(1.05);
}

/* Logout */
.logout {
  margin-top: 18px;
  color: #f1f1f1;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  opacity: 0.85;
  transition: 0.2s;
}

.logout:hover {
  opacity: 1;
  color: var(--secondary);
}

/* ========================= */
/* MAIN */
/* ========================= */
.main {
  flex: 1;
  padding: 40px;
  background: linear-gradient(to right, #0b1020, #0e1b3c);
  overflow-y: auto;
}

/* ========================= */
/* HEADER */
/* ========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
  color: white;
}

.header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* Profile Image */
.profile img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0px 0px 18px rgba(143, 124, 255, 0.45);
}

/* ========================= */
/* TASK INPUT */
/* ========================= */
.task-input {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.task-input input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 15px;
  transition: 0.3s ease;
}

.task-input input:focus {
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 25px rgba(143, 124, 255, 0.45);
}

/* ========================= */
/* BUTTONS */
/* ========================= */
.task-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Add Task Button */
#addTaskBtn {
  padding: 13px 28px;
  border-radius: 30px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0px 8px 22px rgba(143, 124, 255, 0.35);
}

#addTaskBtn:hover {
  background: var(--secondary);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0px 10px 28px rgba(255, 211, 105, 0.45);
}

/* Clock Button */
#clockBtn {
  width: 52px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0px 0px 18px rgba(143, 124, 255, 0.25);
}

#clockBtn:hover {
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 28px rgba(143, 124, 255, 0.55);
  transform: scale(1.07);
}

/* ========================= */
/* CARDS */
/* ========================= */
.cards {
  display: flex;
  gap: 22px;
  margin-top: 35px;
}

.card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.45);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
  color: white;
}

.card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 9px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  margin-top: 16px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 30%;
  background: var(--primary);
  border-radius: 20px;
  box-shadow: 0px 0px 18px rgba(143, 124, 255, 0.55);
}

/* ========================= */
/* TASK LIST */
/* ========================= */
.task-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Task Item */
.task-item {
  background: rgba(255, 255, 255, 0.07);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 6px solid var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.task-item:hover {
  transform: translateY(-2px);
  border-left: 6px solid var(--primary);
}

/* Left Part */
.task-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Tag */
.task-tag {
  background: var(--secondary);
  color: #111;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Task Info */
.task-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.task-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.task-reminder {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Actions */
.task-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: white;
  transition: 0.2s;
}

.done-btn {
  background: var(--primary);
}

.del-btn {
  background: #ff4d4d;
}

.task-actions button:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

/* Completed */
.completed {
  opacity: 0.55;
  text-decoration: line-through;
}

/* ========================= */
/* CUSTOM SELECT DROPDOWN */
/* ========================= */
.custom-select {
  position: relative;
  width: 190px;
  user-select: none;
  font-size: 15px;
}

.select-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 13px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
  transition: 0.25s ease;
  box-shadow: 0px 0px 18px rgba(143, 124, 255, 0.2);
}

.select-box:hover {
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 28px rgba(143, 124, 255, 0.55);
}

.arrow {
  font-size: 14px;
  transition: 0.3s;
}

.custom-select.active .arrow {
  transform: rotate(180deg);
}

.options {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 7px;
  z-index: 1000;
  box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
}

.custom-select.active .options {
  display: flex;
  animation: dropDown 0.25s ease;
}

@keyframes dropDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* option item */
.option {
  padding: 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.25s;
  font-weight: 500;
  color: white;
}

.option:hover {
  background: rgba(143, 124, 255, 0.25);
  border: 1px solid rgba(143, 124, 255, 0.6);
}

.option.selected {
  background: rgba(255, 211, 105, 0.25);
  border: 1px solid rgba(255, 211, 105, 0.6);
  color: var(--secondary);
  font-weight: bold;
}

/* ========================= */
/* MODAL REMINDER */
/* ========================= */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal.active {
  display: flex;
}

.modal-content {
  width: 380px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 25px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: popup 0.3s ease;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 20px;
  color: var(--secondary);
}

.close-modal {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.close-modal:hover {
  color: red;
}

.modal-subtitle {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #bdbdbd;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-body label {
  font-size: 14px;
  color: white;
  margin-top: 10px;
}

.modal-body input {
  padding: 12px;
  border-radius: 15px;
  border: 1px solid var(--border);
  outline: none;
  background: var(--glass);
  color: white;
  font-size: 14px;
}

.save-reminder {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.save-reminder:hover {
  box-shadow: 0px 0px 25px rgba(143, 124, 255, 0.7);
}
/* CALENDAR BUTTON */
#calendarBtn {
  width: 50px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--glass);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 15px rgba(255, 211, 105, 0.2);
}

#calendarBtn:hover {
  border: 1px solid var(--secondary);
  box-shadow: 0px 0px 25px rgba(255, 211, 105, 0.7);
  transform: scale(1.08);
}

/* CALENDAR MODAL SIZE */
.calendar-content {
  width: 520px;
  max-width: 95%;
}

/* CALENDAR HEADER */
.calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.calendar-top h3 {
  font-size: 18px;
  color: var(--secondary);
}

.year-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 14px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.year-btn:hover {
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 15px rgba(143, 124, 255, 0.6);
}

/* WEEKDAYS */
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  color: #bdbdbd;
  padding: 10px 0;
}

/* DAYS GRID */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
}

/* DAY BOX */
.day {
  height: 55px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
}

.day:hover {
  background: rgba(143, 124, 255, 0.25);
  border: 1px solid rgba(143, 124, 255, 0.6);
  transform: scale(1.05);
}

.day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.day.active {
  background: rgba(255, 211, 105, 0.25);
  border: 1px solid rgba(255, 211, 105, 0.7);
  color: var(--secondary);
}

/* FOOTER */
.calendar-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.calendar-info {
  flex: 1;
  min-width: 200px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.calendar-info h4 {
  color: var(--secondary);
  margin-bottom: 8px;
}

.calendar-info p {
  font-size: 13px;
  color: #d1d1d1;
  margin-bottom: 5px;
}

/* USE BUTTON */
.set-date-btn {
  padding: 14px 18px;
  border-radius: 18px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.set-date-btn:hover {
  box-shadow: 0px 0px 25px rgba(143, 124, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .calendar-days {
    gap: 6px;
  }

  .day {
    height: 45px;
    font-size: 13px;
  }

  .calendar-top h3 {
    font-size: 15px;
  }
}

/* ========================= */
/* PROFESSIONAL PROFILE MODAL */
/* ========================= */

.profile-modal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HEADER */
.profile-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.profile-modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.4px;
}

/* Close button */
.profile-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s;
}

.profile-close-btn:hover {
  background: rgba(255, 80, 80, 0.25);
  border-color: rgba(255, 80, 80, 0.6);
  transform: scale(1.05);
}

/* BODY */
.profile-modal-body {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

/* LEFT SIDE */
.profile-left {
  width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.profile-image-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(143,124,255,0.7);
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Upload button */
.profile-upload-btn {
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(143,124,255,0.18);
  border: 1px solid rgba(143,124,255,0.35);
  color: white;
  font-weight: 700;
  transition: 0.25s;
}

.profile-upload-btn:hover {
  background: rgba(143,124,255,0.32);
  transform: translateY(-2px);
}

.profile-left input {
  display: none;
}

/* RIGHT SIDE */
.profile-right {
  flex: 1;
}

/* GRID FORM */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.profile-grid .input-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-grid .input-box label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* Inputs */
.profile-grid input,
.profile-grid textarea {
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
}

.profile-grid input:focus,
.profile-grid textarea:focus {
  border-color: rgba(143,124,255,0.9);
  box-shadow: 0 0 14px rgba(143,124,255,0.35);
}

.profile-grid textarea {
  min-height: 110px;
  resize: none;
}

.profile-grid .full {
  grid-column: span 2;
}

/* FOOTER */
.profile-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 800px) {
  .profile-modal-body {
    flex-direction: column;
  }

  .profile-left {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .profile-upload-btn {
    width: auto;
    padding: 10px 14px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid .full {
    grid-column: span 1;
  }

  .profile-modal-footer {
    justify-content: center;
  }

  .profile-save-btn {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .profile-modal-title {
    font-size: 1.1rem;
  }

  .profile-left {
    flex-direction: column;
    text-align: center;
  }

  .profile-upload-btn {
    width: 100%;
  }
}

/* =============================== */
/* PREMIUM PROFILE MODAL UI */
/* =============================== */

.profile-modal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: profileFadeIn 0.35s ease;
}

@keyframes profileFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =============================== */
/* HEADER */
/* =============================== */
.profile-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.profile-modal-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: 0.6px;
  text-shadow: 0 0 15px rgba(255, 211, 105, 0.25);
}

.profile-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-close-btn:hover {
  background: rgba(255, 80, 80, 0.18);
  border-color: rgba(255, 80, 80, 0.55);
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.25);
  transform: scale(1.05);
}

/* =============================== */
/* BODY */
/* =============================== */
.profile-modal-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: start;
}

/* =============================== */
/* LEFT SIDE */
/* =============================== */
.profile-left {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0px 12px 28px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.profile-left::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(143,124,255,0.18), transparent 60%);
  z-index: 0;
}

.profile-left * {
  position: relative;
  z-index: 2;
}

.profile-image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(143,124,255,0.65);
  box-shadow: 0 0 25px rgba(143,124,255,0.35);
  transition: 0.3s;
}

.profile-image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(255, 211, 105, 0.25);
  border-color: rgba(255, 211, 105, 0.55);
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Upload button */
.profile-upload-btn {
  width: 100%;
  text-align: center;
  padding: 11px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: white;
  border: 1px solid rgba(143,124,255,0.35);
  background: linear-gradient(
    145deg,
    rgba(143,124,255,0.35),
    rgba(143,124,255,0.12)
  );
  box-shadow: 0 10px 22px rgba(143,124,255,0.18);
  transition: 0.25s;
}

.profile-upload-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(143,124,255,0.28);
  border-color: rgba(255, 211, 105, 0.55);
}

.profile-left input {
  display: none;
}

/* =============================== */
/* RIGHT SIDE */
/* =============================== */
.profile-right {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0px 12px 28px rgba(0,0,0,0.30);
}

/* Grid form */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.profile-grid .input-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-grid label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}

/* Inputs premium */
.profile-grid input,
.profile-grid textarea {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
}

.profile-grid input:hover,
.profile-grid textarea:hover {
  border-color: rgba(255,255,255,0.22);
}

.profile-grid input:focus,
.profile-grid textarea:focus {
  border-color: rgba(143,124,255,0.9);
  box-shadow: 0 0 18px rgba(143,124,255,0.35);
  transform: scale(1.01);
}

.profile-grid textarea {
  min-height: 120px;
  resize: none;
}

.profile-grid .full {
  grid-column: span 2;
}

/* =============================== */
/* FOOTER */
/* =============================== */
.profile-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}


/* Loading state */
.profile-save-btn.loading {
  opacity: 0.8;
  pointer-events: none;
  position: relative;
}

.profile-save-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid white;
  display: inline-block;
  margin-left: 10px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================== */
/* TOAST MESSAGE */
/* =============================== */
.profile-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  border-radius: 16px;
  color: white;
  font-weight: 700;
  box-shadow: 0px 15px 35px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: 0.35s;
  z-index: 999999;
}

.profile-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */
@media (max-width: 900px) {
  .profile-modal-body {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid .full {
    grid-column: span 1;
  }

  .profile-modal-footer {
    justify-content: center;
  }

  .profile-save-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .profile-modal-title {
    font-size: 1.1rem;
  }

  .profile-left {
    padding: 14px;
  }

  .profile-right {
    padding: 14px;
  }

  .profile-image-wrapper {
    width: 105px;
    height: 105px;
  }

  .profile-save-btn {
    padding: 11px 18px;
  }
}
/* =============================== */
/* DESKTOP MODE (COMPUTER VIEW) */
/* =============================== */
@media (min-width: 1000px) {

  .modal-content {
    width: 850px !important;
    max-width: 850px !important;
    padding: 28px !important;
    border-radius: 18px;
  }

  .profile-modal-body {
    grid-template-columns: 260px 1fr !important;
    gap: 26px !important;
    align-items: stretch;
  }

  .profile-left {
    padding: 22px !important;
    border-radius: 20px;
    justify-content: center;
    min-height: 360px;
  }

  .profile-image-wrapper {
    width: 140px !important;
    height: 140px !important;
    border-radius: 26px !important;
  }

  .profile-upload-btn {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 16px;
  }

  .profile-right {
    padding: 22px !important;
    border-radius: 20px;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .profile-grid input,
  .profile-grid textarea {
    font-size: 15px !important;
    padding: 14px 14px !important;
    border-radius: 16px !important;
  }

  .profile-grid textarea {
    min-height: 160px !important;
  }

  .profile-modal-footer {
    justify-content: flex-end !important;
    margin-top: 6px;
  }

  .profile-save-btn {
    width: auto !important;
    padding: 13px 26px !important;
    font-size: 15px;
    border-radius: 16px;
  }

  .profile-modal-title {
    font-size: 1.55rem !important;
  }

  .profile-close-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    font-size: 18px;
  }
}
/* Footer buttons center */
.profile-modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 12px;
}

/* Clear button */
.profile-clear-btn {
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.profile-clear-btn:hover {
  background: rgba(255, 76, 76, 0.22);
  border-color: rgba(255, 76, 76, 0.6);
  transform: translateY(-2px);
}

/* Save button (keep premium look) */
.profile-save-btn {
  padding: 12px 22px;
  border-radius: 14px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  margin-bottom: 20px;
}

.profile-save-btn:hover {
  background: var(--secondary);
  color: #111;
  transform: translateY(-2px);
}

.menu li {
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.menu li:hover {
  background: var(--glass);
}

.menu li.active {
  background: var(--primary);
  font-weight: bold;
  color: white;
}

/* PLAYLIST CONTAINER */
.playlist-container {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  color: #cfcfcf;
}

.playlist-item:hover {
  background: var(--glass);
}

.playlist-item.active {
  background: var(--primary);
  color: white;
  font-weight: bold;
}

.playlist-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--dark);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  width: 430px;
  max-width: 95%;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: white;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-modal:hover {
  transform: rotate(90deg);
}

.modal-body label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.95rem;
}

.modal-body input[type="text"],
.modal-body input[type="date"],
.modal-body input[type="time"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: white;
  outline: none;
  margin-bottom: 10px;
}

.color-picker {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.25s;
  opacity: 0.8;
}

.color-dot:hover {
  transform: scale(1.2);
  opacity: 1;
}

.color-dot.active {
  border: 2px solid white;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
  opacity: 1;
}

.save-reminder {
  background: var(--primary);
  color: white;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.25s;
}

.save-reminder:hover {
  background: var(--secondary);
}
/* ===============================
   PLAYLIST STYLING
=================================*/

#playlistContainer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playlist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin: 4px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #333;
}

.playlist-item:hover {
  background-color: rgba(143, 124, 255, 0.1); /* light highlight */
}

.playlist-item.active {
  background-color: rgba(143, 124, 255, 0.3);
  font-weight: 500;
}

.playlist-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.playlist-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.playlist-actions {
  display: flex;
  align-items: center;
}

.playlist-delete {
  border: none;
  background: #ff4d4d;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.playlist-delete:hover {
  background: #e60000;
}
:root {
  --primary: #8f7cff;
  --secondary: #ffd369;
  --dark: #0f172a;
  --glass: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.25);
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
  --light-bg: #f5f5f5;
  --light-text: #111827;
}

/* ======================= */
/* SETTINGS MODAL STYLES */
/* ======================= */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--dark);
  border-radius: 12px;
  width: 500px;
  max-width: 90%;
  padding: 20px;
  box-shadow: var(--shadow);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.modal-header h2 {
  font-size: 1.4rem;
}

.close-modal {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.close-modal:hover {
  color: var(--primary);
}

/* Tabs */
.settings-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.tab-btn:hover {
  background: rgba(143, 124, 255, 0.3);
}

/* Tab content */
.settings-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-content {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.tab-content.active {
  display: flex;
}

/* Inputs */
.tab-content input,
.tab-content textarea {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: #fff;
  font-size: 0.9rem;
}

.tab-content textarea {
  resize: vertical;
}

/* Buttons */
.tab-content button,
.theme-btn {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  transition: 0.2s;
}

.tab-content button:hover,
.theme-btn:hover {
  background: var(--secondary);
  color: #111827;
}

/* Profile image preview */
#settingsProfilePreview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  margin-top: 5px;
}

/* Playlist list in settings */
#settingsPlaylistContainer {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--glass);
}

#settingsPlaylistContainer li {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Daily report */
#dailyReportText {
  background: var(--glass);
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #fff;
}
#mainContent {
  margin-top: 20px;
}

/* Notes page container */
.pageNotes {
  display: none; /* hidden by default */
  animation: fadeIn 0.4s ease-in-out;
}

.pageNotes.active {
  display: block;
}

.note-container {
  background: var(--glass);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.top-bar button {
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.top-bar button:hover {
  opacity: 0.85;
}

.note-form {
  display: none;
  margin-bottom: 15px;
}

.note-form input,
.note-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.note-form button {
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background: var(--secondary);
  cursor: pointer;
}

.notes {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.note {
  background: var(--glass);
  padding: 10px;
  border-radius: 10px;
  position: relative;
}

.note-actions button {
  margin-top: 5px;
  margin-right: 5px;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
}

.edit-btn { background: var(--secondary); color: black; }
.delete-btn { background: #ff4c4c; color: white; }
/* ======================= */
/* PERFECT RESPONSIVE MODAL HEIGHT */
/* ======================= */

.modal-content {
  width: 500px;
  max-width: 92%;
  max-height: 85vh;          /* IMPORTANT */
  overflow-y: auto;          /* allow scroll */
  padding: 20px;
  border-radius: 14px;
}

/* Hide scrollbar but still scroll */
.modal-content::-webkit-scrollbar {
  width: 0px;
}
.modal-content {
  scrollbar-width: none;
}

/* Keep header always visible */
.modal-header {
  position: sticky;
  top: 0;
  background: var(--dark);
  padding-bottom: 10px;
  z-index: 10;
}

/* ======================= */
/* Tablet */
/* ======================= */
@media (max-width: 900px) {
  .modal-content {
    width: 450px;
    max-height: 80vh;
    padding: 18px;
  }
}

/* ======================= */
/* Phone */
/* ======================= */
@media (max-width: 600px) {
  .modal {
    padding: 10px;
    align-items: center;
  }

  .modal-content {
    width: 100%;
    max-width: 96%;
    max-height: 78vh;   /* so close/save always visible */
    padding: 15px;
  }

  .modal-header h2 {
    font-size: 1.1rem;
  }

  .tab-btn {
    font-size: 0.75rem;
    padding: 6px 8px;
    min-width: 100px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .modal-content {
    max-height: 72vh;
    padding: 13px;
  }

  .tab-btn {
    font-size: 0.7rem;
    padding: 5px 6px;
  }
}

@keyframes fadeIn {
  from {opacity:0; transform: translateY(-10px);}
  to {opacity:1; transform: translateY(0);}
}
.meetings-page-container { display:flex; justify-content:center; align-items:center; }
.meetings-card { background: var(--glass); backdrop-filter: blur(15px); border-radius: var(--radius-card); padding:25px; box-shadow:var(--shadow); }
.meeting { background: var(--glass); border-radius: var(--radius-card); padding:15px; margin-bottom:10px; box-shadow: var(--shadow); transition:0.3s; }
.meeting:hover { transform:translateY(-3px); box-shadow: var(--shadow-hover); }
.meeting-actions button { margin-right:5px; border-radius:var(--radius-btn); padding:5px 10px; }
.meeting-actions .edit-btn { background:var(--secondary); color:#000; }
.meeting-actions .delete-btn { background:#ff4c4c; color:#fff; }
.meeting-form { display:none; flex-direction:column; gap:10px; }
.meeting-form.show { display:flex; opacity:1; }

/* ================= Right Panel ================= */
.right-panel {
  width: 320px;
  background: rgba(15, 23, 42, 0.95);
  border-left: 1px solid var(--border);
  padding: 20px;
  border-radius: 20px 0 0 20px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

/* Header */
.right-panel .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.right-panel .panel-header h2 {
  font-size: 18px;
  color: var(--secondary);
}

.right-panel .panel-header button {
  border: none;
  background: transparent;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s;
}

.right-panel .panel-header button:hover {
  color: var(--primary);
}

/* Panel Body */
.right-panel .panel-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

/* Overlay for mobile */
.right-panel-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 999;
}
/* ================= Base Desktop ================= */
.task-input {
  display: flex;
  gap: 10px;
  align-items: center;
  background: transparent;  /* keep your theme background */
  padding: 15px;
  border-radius: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.task-input input[type="text"] {
  flex: 1 1 auto;
  padding: 12px 15px;
  border-radius: 12px;      /* smooth rounded */
  border: 1px solid #444;
  font-size: 1rem;
  min-width: 200px;
  background: #1e1e2f;      /* dark theme */
  color: #fff;
}

.custom-select {
  flex: 0 0 130px;
  min-width: 100px;
}

.select-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;      /* smooth rounded */
  border: 1px solid #444;
  background: #2a2a40;      /* dark dropdown */
  color: #fff;
  cursor: pointer;
}

.task-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.task-buttons button {
  padding: 10px 15px;
  border-radius: 12px;      /* round buttons */
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

/* Calendar & Clock Buttons */
#calendarBtn, #clockBtn {
  width: 45px;
  height: 45px;
  background: #6c757d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#calendarBtn:hover, #clockBtn:hover {
  background: #495057;
}

/* Add Task Button */
#addTaskBtn {
  background: #7b5af5;
  color: #fff;
  min-width: 120px;
  font-weight: 500;
}

#addTaskBtn:hover {
  background: #592de0;
}

/* ================= Tablet (768px - 1024px) ================= */
@media (max-width: 1024px) {
  .task-input {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .task-input input[type="text"],
  .custom-select,
  .task-buttons {
    width: 100%;
    flex: 1 1 100%;
  }

  .task-buttons {
    justify-content: flex-start;
    gap: 8px;
  }

  #calendarBtn, #clockBtn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  #addTaskBtn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ================= Mobile (480px - 767px) ================= */
@media (max-width: 767px) {
  .task-input {
    flex-direction: column;
    gap: 12px;
  }

  .task-input input[type="text"],
  .custom-select,
  .task-buttons {
    width: 100%;
    flex: 1 1 100%;
  }

  .task-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }

  #calendarBtn, #clockBtn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  #addTaskBtn {
    width: 100%;
    flex: 1 1 100%;
    border-radius: 12px;
  }
}

/* ================= Extra Small <480px ================= */
@media (max-width: 479px) {
  .task-input input[type="text"] {
    font-size: 0.9rem;
    padding: 10px;
  }

  .select-box {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .task-buttons button {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  #calendarBtn, #clockBtn {
    width: 32px;
    height: 32px;
  }

  #addTaskBtn {
    font-size: 0.9rem;
  }
}
/* ========================= */
/* SIDEBAR FINAL FIXED */
/* ========================= */

.sidebar {
  width: 300px;
  height: 100vh;
  background: #10172c;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 6px 0px 25px rgba(0, 0, 0, 0.35);
}

/* Profile Logo */
.profile-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 12px;
  border-radius: 14px;
  transition: 0.3s;
  margin-bottom: 18px;
}

.profile-logo:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0px 0px 18px rgba(255, 211, 105, 0.25);
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.info-icon {
  font-size: 14px;
  color: var(--secondary);
  opacity: 0.9;
}

/* ========================= */
/* MENU */
/* ========================= */
.menu {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

/* scrollbar */
.menu::-webkit-scrollbar {
  width: 6px;
}
.menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

/* menu item */
.menu li {
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #d0d0d0;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* hover */
.menu li:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

/* active */
.menu li.active {
  background: var(--primary);
  color: white;
  font-weight: 700;
  box-shadow: 0px 8px 25px rgba(143, 124, 255, 0.35);
}

/* menu links */
.menu li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* ========================= */
/* PLAYLIST */
/* ========================= */
.playlist-container {
  list-style: none;
  padding-left: 12px;
  margin-top: 10px;
}

.playlist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  margin: 5px 0;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 13px;
  color: #d0d0d0;
}

.playlist-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.playlist-item.active {
  background: rgba(143, 124, 255, 0.3);
  color: white;
  font-weight: bold;
}

/* ========================= */
/* CALENDAR BOX */
/* ========================= */
.calendar-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cal-btn {
  background: var(--primary);
  border: none;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 13px;
  transition: 0.25s ease;
}

.cal-btn:hover {
  background: var(--secondary);
  color: #111;
}

/* ========================= */
/* SIDEBAR TOOLBAR */
/* ========================= */
.sidebar-toolbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 12px;
}

.sidebar-toolbar button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: 0.25s;
}

.sidebar-toolbar button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* ========================= */
/* RESPONSIVE WITHOUT HIDING */
/* ========================= */

/* Tablets */
@media (max-width: 1024px) {
  .sidebar {
    width: 230px;
    padding: 18px 12px;
  }

  .logo {
    font-size: 20px;
  }

  .menu li {
    font-size: 13px;
    padding: 8px 10px;
  }

  .calendar-box {
    font-size: 13px;
    padding: 10px;
  }

  .sidebar-toolbar button {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .sidebar {
    width: 190px;
    padding: 14px 10px;
  }

  .logo {
    font-size: 18px;
  }

  .info-icon {
    font-size: 12px;
  }

  .menu li {
    font-size: 12px;
    padding: 7px 8px;
  }

  .playlist-item {
    font-size: 12px;
    padding: 6px 8px;
  }

  .calendar-box {
    font-size: 12px;
    padding: 8px;
  }

  .sidebar-toolbar button {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .sidebar {
    width: 165px;
    padding: 12px 8px;
  }

  .menu li {
    font-size: 11px;
    padding: 6px 6px;
  }

  .calendar-box {
    font-size: 11px;
    padding: 6px;
  }

  .sidebar-toolbar button {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
