/* ===== GRADIENT BUTTONS STYLES ===== */

.gradient-buttons-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gradient-button-container {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  width: auto;
  flex: 1;
}

.gradient-button {
  position: relative;
  display: inline-block;
  padding: 1px;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  background: #1f2937;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(45, 212, 191, 0.3) !important;
  width: 100%;
  min-width: fit-content;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gradient-button:hover {
  transform: scale(1.05);
}

.gradient-button:active {
  transform: scale(0.95);
}

.gradient-button-bg {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to right, #2dd4bf, #3b82f6, #a855f7);
  padding: 2px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gradient-button-container:hover .gradient-button-bg {
  opacity: 1;
}

.gradient-button-content {
  position: relative;
  z-index: 10;
  display: block;
  padding: 12px 24px;
  border-radius: 12px;
  background: #0a0a0a;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gradient-button-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gradient-button-icon {
  transition: transform 0.5s ease;
}

.gradient-button-text {
  transition: transform 0.5s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.gradient-button-container:hover .gradient-button-icon,
.gradient-button-container:hover .gradient-button-text {
  transform: translateX(4px);
}

/* ===== CALENDAR QUICK ACCESS GRADIENT STYLING ===== */
.calendar-quick-access {
  position: relative;
  background: #0a0a0a !important;
  border: 1px solid rgba(45, 212, 191, 0.3) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
  cursor: pointer;
  border-radius: 12px;
}

.calendar-quick-access::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(to right, #2dd4bf, #3b82f6, #a855f7);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 2px;
}

.calendar-quick-access:hover::before {
  opacity: 1;
}

.calendar-quick-access:hover {
  transform: scale(1.05);
  border-color: transparent !important;
}

.calendar-quick-access:active {
  transform: scale(0.95);
}

/* ===== CALENDAR SECTION ICONS STYLING ===== */
#calendar-section .calendar-section-title i {
  color: #60a5fa !important; /* Blue-400 - Primary icon color */
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}

#calendar-section .calendar-stat-item i {
  color: #34d399 !important; /* Emerald-400 - Secondary icon color */
}

#calendar-section .calendar-open-btn {
  color: #E9ECF1 !important; /* Keep text neutral */
}

#calendar-section .calendar-open-btn i {
  color: #a78bfa !important; /* Purple-400 - Accent icon color for action button */
}

/* ===== GRADIENT BUTTONS ICONS STYLING ===== */
.gradient-button-icon.fa-inbox {
  color: #3b82f6 !important; /* Blue-500 for Inbox icon */
}

.gradient-button-icon.fa-tasks {
  color: #f59e0b !important; /* Amber-500 for To-Do tasks icon */
}

.gradient-button-text {
  color: #d1d5db !important; /* Keep text neutral */
}
