/* Tablet & Mobile Adjustments */
@media (max-width: 480px) {
  .chat-window {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }

  .calendar-card-container {
    flex-direction: column;
  }

  .calendar-right {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-left: 0;
    padding-top: 10px;
  }

  .time-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 120px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}