/* Calendar Section  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--premium-glass-text-primary, rgba(255, 255, 255, 0.98));
  text-transform: uppercase;les */
.calendar-quick-access {
  margin-top: 25px;
  border-radius: 10px;
  padding: 20px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* Match notification-group-header: background & border */
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
}


.calendar-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 900;
  color: #E9ECF1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.calendar-section-title i {
  font-size: 16px;
  background: var(--accent-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calendar-open-btn {
  width: 100%;
  padding: 16px 20px;
  /* Match notification-group-header: background & border */
  /* background: rgba(255, 255, 255, 0.06); */
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 10px;
  color: #E9ECF1;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


.calendar-open-btn:hover {
  transform: translateY(-1px);
  /* Match notification-group-header hover */
  /* background: rgba(255, 255, 255, 0.08); */
  border-color: rgba(45, 212, 191, 0.3);
}

.calendar-open-btn:hover::before {
  left: 100%;
}

.calendar-open-btn:active {
  transform: translateY(0) scale(0.995);
  transition: transform 0.1s ease;
}

.calendar-open-btn i {
  font-size: 18px;
  transition: transform 0.2s ease, filter 0.2s ease;
  /* filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)); */
}

.calendar-open-btn:hover i {
  transform: translateX(2px) scale(1.05);
}

@keyframes rocket-bounce {
  0%, 100% { transform: scale(1.2) translateX(2px); }
  50% { transform: scale(1.3) translateX(4px); }
}

.calendar-stats {
  margin-top: 15px;
  padding-top: 15px;
  display: flex;
  gap: 8px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.calendar-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #A5ABB5;
  padding: 8px 12px;
  /* Match notification-group-header: background & border */
  /* background: rgba(255, 255, 255, 0.06); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.calendar-stat-item:hover {
  /* Match notification-group-header hover */
  /* background: rgba(255, 255, 255, 0.08); */
  /* border-color: rgba(255, 255, 255, 0.14); */
  transform: translateX(2px);
}

.calendar-stat-item i {
  color: var(--accent-cyan);
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.calendar-stat-item span:first-of-type {
  flex: 1;
  font-weight: 500;
}

.calendar-stat-number {
  color: #E9ECF1;
  font-weight: 700;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .calendar-quick-access {
    margin-bottom: 20px;
    padding: 16px;
  }
  
  .calendar-open-btn {
    padding: 14px 18px;
    font-size: 14px;
    gap: 10px;
  }
  
  .calendar-open-btn i {
    font-size: 16px;
  }
  
  .calendar-section-title {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .calendar-stats {
    margin-top: 12px;
    padding-top: 12px;
    gap: 6px;
  }
  
  .calendar-stat-item {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .calendar-stat-number {
    font-size: 12px;
    padding: 1px 6px;
  }
}

/* Loading animation */
.calendar-loading {
  opacity: 0.7;
  pointer-events: none;
}

.calendar-loading .calendar-open-btn {
  background: linear-gradient(135deg, #666, #888);
  cursor: not-allowed;
}

.calendar-loading .calendar-open-btn i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pulse animation for notifications */
.calendar-has-events {
  animation: gentle-pulse 3s ease-in-out infinite;
}
