/* =============================================
   AI Content Bridge — Inspired Styles
   Version 1.5.0
   ============================================= */

:root {
  --tw-color-primary: #1B6EF3;
  --tw-color-primary-dark: #1458CC;
  --tw-color-gray-50: #F4F8FC;
  --tw-color-gray-100: #EBF2F9;
  --tw-color-gray-200: #D6E4F0;
  --tw-color-gray-700: #122038;
  --tw-color-gray-900: #06101E;
}

/* Base Reset + Typography */
#ai-content-bridge-root {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

#ai-content-bridge-root h1, 
#ai-content-bridge-root h2, 
#ai-content-bridge-root h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ai-content-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.1);
  border: 1px solid #D6E4F0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-content-card:hover {
  box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.1);
  transform: translateY(-2px);
}

/* Buttons */
.ai-btn-primary {
  background: var(--tw-color-primary);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  padding: 10px 24px;
  transition: all 0.2s ease;
}

.ai-btn-primary:hover {
  background: var(--tw-color-primary-dark);
  transform: scale(1.03);
}

/* Modern spacing & typography for generated posts */
.ai-content-post h1 { margin-top: 2.75rem; margin-bottom: 1.25rem; font-size: 2.25rem; line-height: 1.2; }
.ai-content-post h2 { margin-top: 2.25rem; margin-bottom: 1rem; font-size: 1.75rem; line-height: 1.3; }
.ai-content-post h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; font-size: 1.4rem; }
.ai-content-post p   { margin-bottom: 1.75rem; line-height: 1.8; }

/* Calendar & Diary improvements */
.ai-calendar-day {
  transition: all 0.2s ease;
}

.ai-calendar-day:hover {
  background-color: #EFF6FF !important;
  border-color: #1B6EF3 !important;
}

/* Table styling */
.ai-logs-table tr:hover {
  background-color: #F4F8FC;
}