/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
}

body {
  background-color: #051440;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* Layout */
.dashboard {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  margin-left: 3rem;
  position: relative;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #ffffff;
  color: white;
}

/* Mobile navigation */
.mobile-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-title {
  display: flex;
  align-items: center;
}

.mobile-nav-title span {
  font-weight: 600;
  margin-left: 0.5rem;
}

.mobile-nav-tabs {
  display: flex;
  gap: 0.5rem;
}

.mobile-nav-tab {
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-tab.active {
  background-color: #e6f0ff;
  color: #3b82f6;
}

#mobile-title {
  color: #3b82f6;
}

.blue {
  color: #3b82f6;
}

.gray {
  color: #e48202;
}

.orange {
  color: #e48202;
}

/* Center Column Layout */
.center-column {
  flex-direction: column;
  flex: 1;
  border-right: 1px solid #e5e5e5;
}

.center-column .calendar-panel {
  border-bottom: 1px solid #e5e5e5;
  overflow-y: hidden;
}

#calendar-left-btn,
#calendar-right-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 0.5rem;
  border-radius: 20px;
  background-color: #d6d6d6;
}

.center-column .calendar-panel .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
}

.center-column .calendar-panel .calendar-header h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.center-column .calendar-panel .calendar-header .calendar-actions {
  display: flex;
  gap: 0.5rem;
}

.calendar-dates-scroll {
  display: inline-flex;
  padding: 0 0.5rem;
  gap: 0.4rem;
}

.center-column .drive-panel {
  height: 45%;
  /* overflow: hidden; */
}

/* Panels */
.panel {
  flex: 1;
  background-color: white;
  border-right: 1px solid #e5e5e5;
}

.panel-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.panel-title .blue {
  color: #3b82f6;
}

.panel-title .gray {
  color: #e48202;
}

.panel-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.back-to-list-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 4px;
}

.back-to-list-btn:hover {
  background-color: #f3f4f6;
}

.view-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 4px;
}

.view-toggle-btn:hover {
  background-color: #f3f4f6;
}

.search-container {
  padding: 1rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.5rem;
  padding-left: 2.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.search-icon {
  position: absolute;
  left: 1.75rem;
  top: 1.625rem;
  color: #9ca3af;
}

/* Mail items */
.mail-list,
.chat-list {
  border-top: 1px solid #e5e5e5;
}

/* Fixed mail list - no scrolling */
.fixed-mail-list {
  height: calc(100% - 60px);
  overflow: hidden;
}

.mail-item,
.chat-item {
  display: flex;
  padding: 0.7rem;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}

.mail-item:hover,
.chat-item:hover {
  background-color: #f0f7ff;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  margin-right: 0.75rem;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  font-size: 0.75rem;
  font-weight: 500;
}

.mail-content,
.chat-content {
  flex: 1;
  min-width: 0;
}

.mail-header,
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sender-name,
.chat-name {
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mail-time,
.chat-time {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
  margin-left: 0.7rem;
}

.chat-time {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  margin-left: 0.7rem;
  text-align: center;
}

.mail-subject {
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mail-preview,
.chat-message {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unread-badge {
  margin-left: 0.5rem;
  background-color: #3b82f6;
  color: white;
  font-size: 0.75rem;
  border-radius: 9999px;
  height: 1.25rem;
  width: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mail Detail View */
.mail-detail-view {
  padding: 1.5rem;
}

.mail-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.mail-detail-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mail-detail-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mail-detail-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.125rem;
}

.mail-detail-info{
  flex: 1;
  width: 100%;
}

.mail-detail-meta {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0 0 0.5rem 0;
  margin-left: 60%;
  margin-top: -5%;
}

.mail-detail-subject {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.mail-detail-body {
  line-height: 1.6;
  font-size: 0.875rem;
}

.mail-detail-body p {
  margin-bottom: 1rem;
}

/* Chat Detail View */
.chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e5e5e5;
  font-size: 14px;
}
.chat-detail-view {
  display: flex;
  flex-direction: column;
  height: calc(100% - 80px);
}

.chat-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.chat-detail-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.chat-detail-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-detail-info h4 {
  margin: 0;
  font-size: 1rem;
}

.online-status {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid white;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 0.75rem;
}

.message.sent {
  flex-direction: row-reverse;
}

.message-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content {
  max-width: 70%;
}

.message.sent .message-content {
  background: #3b82f6;
  color: white;
  border-radius: 18px 18px 4px 18px;
  padding: 0.75rem 1rem;
}

.message.received .message-content {
  background: #f3f4f6;
  border-radius: 18px 18px 18px 4px;
  padding: 0.75rem 1rem;
}

.message-time {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  display: block;
}

.message.sent .message-time {
  color: rgba(255, 255, 255, 0.7);
}

/* Drive Styles */
.drive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.drive-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.more-files-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
}

.more-files-btn:hover {
  background: #2563eb;
}

.drive-files {
  padding: 1rem;
}

/* Fixed drive list - no scrolling */
.fixed-drive-list {
  height: calc(100% - 60px);
  overflow: hidden;
}

.drive-files.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.drive-files.list-view {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.file-item:hover {
  background-color: #f9fafb;
  border-color: #3b82f6;
}

.list-view .file-item {
  flex-direction: row;
  align-items: center;
  padding: 0.75rem;
}

.file-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.list-view .file-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
  margin-right: 0.75rem;
}

.file-icon svg {
  width: 100%;
  height: 100%;
}

.file-info {
  text-align: center;
}

.list-view .file-info {
  text-align: left;
  flex: 1;
}

.file-name {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  word-break: break-word;
}

.file-size {
  font-size: 0.75rem;
  color: #6b7280;
  margin-left: 40%;
  margin-top: -5%;
}

.file-modified {
  font-size: 0.75rem;
  color: #6b7280;
  margin-left: 75%;
  margin-top: -3.4%;
}

/* Drive Detail View */
.drive-detail-view {
  padding: 1.5rem;
}

.file-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.file-detail-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  background: #f0f7ff;
  border-radius: 8px;
}

.file-detail-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.file-detail-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.file-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.file-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.file-action-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-action-btn:hover {
  background: #f9fafb;
}

.file-action-btn.primary {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.file-action-btn.primary:hover {
  background: #2563eb;
}

.shared-with {
  margin-bottom: 1.5rem;
}

.shared-with h5 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.shared-users {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 14px;
}

.shared-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shared-user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
}

.shared-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview {
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.file-header{
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* margin-bottom: 1rem; */
  font-size: 14px;
  font-weight: 500;
  margin-right: left;
  margin-left: 1.5rem;
  margin-right: 2rem;
}

/* Calendar */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.calendar-day {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}

/* Horizontal scrolling calendar dates */
.calendar-dates-container {
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.calendar-dates-scroll {
  display: inline-flex;
  padding: 0 0.5rem;
}

.calendar-date {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  font-size: 0.875rem;
  color: #4b5563;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  flex-shrink: 0;
}

.calendar-date:hover {
  background-color: #537272;
  color: black;
}

.calendar-date.active {
  background-color: #9b9b9b;
  color: white;
}

.calendar-date.active:hover {
  background-color: #555252;
}

.calendar-content {
  padding: 1rem;
  overflow-y: auto;
  height: calc(100% - 140px);
  padding-bottom: 3rem;
}

.date-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.date-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.date-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 0.5rem;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event {
  display: flex;
  cursor: pointer;
}

.event-time {
  font-size: 0.75rem;
  color: #6b7280;
  width: 3rem;
  padding-top: 0.25rem;
}

.event-content {
  flex: 1;
}

.event-card {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border-left-width: 4px;
}

.event-card.green {
  background-color: #eaf4fa;
  border-color: #00a3ff;
  border-style: solid;
  border-width: 2px;
}

.event-card.blue {
  background-color: #feebff;
  border-color: #f700ff;
  border-style: solid;
  border-width: 2px;
}

.event-card.orange {
  background-color: #fff5e1;
  border-color: #ffa600;
  border-style: solid;
  border-width: 2px;
}

.event-title {
  font-weight: 500;
  font-size: 0.875rem;
}

.event-description {
  font-size: 0.75rem;
  color: #4b5563;
}

.event-attendees {
  display: flex;
  margin-top: 0.5rem;
  gap: 0.25rem;
}

.attendee {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid white;
}

.attendee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attendee-more {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: #e5e5e5;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.event-duration {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 3.5rem;
  margin-left: -2.5rem;
  padding: 5px;
}

/* Event Detail View */
.event-detail-view {
  padding: 1.5rem;
  height: 100%;
  overflow-y: auto;
}

.event-detail-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.event-detail-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.event-detail-time {
  color: #6b7280;
  font-size: 0.875rem;
}

.event-detail-body {
  line-height: 1.6;
}

.event-detail-body p {
  margin-bottom: 1rem;
}

.event-detail-attendees {
  margin-top: 1.5rem;
}

.attendees-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.no-events {
  text-align: center;
  color: #6b7280;
  padding: 2rem 0;
}

.more-events {
  text-align: center;
  color: #3b82f6;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  cursor: pointer;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #e5e5e5;
  padding: 0.5rem;
  z-index: 100;
  justify-content: space-around;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.5rem;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.mobile-bottom-nav-item.active {
  color: #3b82f6;
}

.mobile-bottom-nav-item .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.25rem;
}

.mobile-bottom-nav-item span {
  font-size: 0.75rem;
}

.add-event-button:hover {
  background-color: #2563eb;
  transform: scale(1.1);
}

.add-event-button:active {
  background-color: #ffffff;
  transform: scale(1);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  transition: stroke 0.3s ease;
}

.add-event-button:hover .icon {
  stroke: #ffffff;
}

/* Fixed chat list - no scrolling */
.fixed-chat-list {
  height: calc(100% - 60px);
  /* overflow: hidden; */
}

/* Responsive */
@media (min-width: 768px) {
  .dashboard {
    flex-direction: row;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-bottom-nav {
    display: none !important;
  }

  .panel {
    display: block !important;
    flex: 1;
    overflow: auto;
  }

  .center-column {
    width: 33.333%;
    display: flex;
  }
}

@media (max-width: 767px) {
  .dashboard {
    margin-left: 0;
    padding-bottom: 4rem;
  }

  .panel {
    display: none;
  }

  .panel.active {
    display: block;
  }

  .center-column {
    display: block;
  }

  .center-column .calendar-panel,
  .center-column .drive-panel {
    height: 40%;
    border-bottom: none;
  }

  .drive-files.grid-view {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-bottom-nav {
    display: flex !important;
  }

  .calendar-content {
    height: calc(100vh - 200px);
    padding-bottom: 1rem;
  }

  .event-detail-view {
    height: calc(100vh - 120px);
  }

  .calendar-dates-container {
    padding: 0.5rem;
  }

  .calendar-dates-scroll {
    gap: 0.5rem;
  }

  .calendar-date {
    min-width: 2.5rem;
  }
}

/* Week view specific styles */
.week-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.week-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.week-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.week-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.week-nav-btn:hover {
  background-color: #f3f4f6;
}

.week-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.week-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid #e5e5e5;
}

.week-date {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  transition: background-color 0.2s;
}

.week-date:last-child {
  border-right: none;
}

.week-date:hover {
  background-color: #f9fafb;
}

.week-date.active {
  background-color: #eff6ff;
  color: #3b82f6;
}

.week-date-number {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.week-date-day {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.week-events {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.week-events-for-date {
  margin-bottom: 1.5rem;
}

.week-events-date-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.week-events-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.week-event {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.2s;
}

.week-event:hover {
  border-color: #3b82f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.week-event-time {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  min-width: 3rem;
}

.week-event-content {
  flex: 1;
}

.week-event-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.week-event-description {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Event type colors for week view */
.week-event.green {
  border-left: 4px solid #00a3ff;
  background-color: #eaf4fa;
}

.week-event.blue {
  border-left: 4px solid #f700ff;
  background-color: #feebff;
}

.week-event.orange {
  border-left: 4px solid #ffa600;
  background-color: #fff5e1;
}

/* Empty state for week view */
.week-no-events {
  text-align: center;
  color: #6b7280;
  padding: 2rem;
  font-style: italic;
}

/* Smooth transitions */
.calendar-content,
.event-detail-view,
.week-view {
  transition: opacity 0.2s ease-in-out;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Accessibility improvements */
.calendar-date:focus,
.week-date:focus,
.event:focus,
.week-event:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-nav,
  .mobile-bottom-nav,
  .panel-actions,
  .back-to-list-btn {
    display: none !important;
  }
  
  .dashboard {
    margin-left: 0;
  }
  
  .panel {
    border: none;
    box-shadow: none;
  }
}