/* Inline Styles Extracted from index.html */
/* This file contains all styles that were inline in index.html */

@keyframes spin { 
  0% { transform: rotate(0deg);} 
  100% { transform: rotate(360deg);} 
}

.spinner { 
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #cbd5e1;
  border-top: 2px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}

/* Profile Modal Styles */
.profile-modal {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(30,41,59,0.25);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
  overflow-y: auto;
  overflow-x: visible;
  padding: 2rem;
}

@keyframes fadeIn { 
  from { opacity: 0; } 
  to { opacity: 1; } 
}

.profile-modal-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 320px;
  max-width: 95vw;
  max-height: 95vh;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.2s;
  overflow-y: auto;
  overflow-x: visible;
}

body.dark .profile-modal-content {
  background: #232946;
  color: #f4f4f9;
}

.close-profile-modal {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}

.close-profile-modal:hover { 
  color: #ef4444; 
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.profile-metrics {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-metric {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.profile-avatar-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

body.dark .profile-metric {
  background: #2f3a5a;
  border-color: #3f4a6c;
}

body.dark .metric-label {
  color: #cbd5f5;
}

body.dark .metric-value {
  color: #f8f4f9;
}

.profile-header h2 {
  margin: 0 0 0.2rem 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.profile-header p {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
}

.avatar-container {
  position: relative;
  display: inline-block;
}

.avatar-upload-btn {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 3px solid white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
}

.avatar-upload-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.upload-icon {
  font-size: 18px;
}

.profile-settings {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  min-height: 400px;
  width: 100%;
  border: 1px solid #e2e8f0;
}

.profile-settings h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

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

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Theme Dropdown Styles */
.theme-dropdown-wrapper {
  position: relative;
  width: 100%;
  max-width: 250px;
}

.theme-dropdown-button {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: 0.625rem;
  background: #ffffff;
  color: #1e293b;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  position: relative;
  box-sizing: border-box;
}

.theme-dropdown-button:hover {
  border-color: var(--primary-color);
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.theme-dropdown-button.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
}

.theme-dropdown-selected {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.theme-dropdown-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  flex-shrink: 0;
  display: block;
}

.theme-dropdown-text {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-dropdown-arrow {
  position: absolute;
  right: 1rem;
  font-size: 0.75rem;
  color: #64748b;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.theme-dropdown-button.active .theme-dropdown-arrow {
  transform: rotate(180deg);
}

.theme-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 0.625rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  margin-top: 0.25rem;
}

.theme-dropdown-menu.show {
  display: block;
}

/* Custom scrollbar for dropdown */
.theme-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.theme-dropdown-menu::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.theme-dropdown-menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.theme-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.theme-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.theme-dropdown-item:last-child {
  border-bottom: none;
}

.theme-dropdown-item:hover {
  background: #f8fafc;
}

.theme-dropdown-item.active {
  background: #e0f2fe;
  font-weight: 600;
}

.theme-dropdown-item-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  flex-shrink: 0;
  display: block;
}

.theme-dropdown-item.active .theme-dropdown-item-swatch {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

.theme-dropdown-item-icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.theme-dropdown-item-name {
  flex: 1;
  font-size: 0.9375rem;
  color: #1e293b;
  font-weight: 500;
}

.theme-dropdown-item.active .theme-dropdown-item-name {
  color: var(--primary-color);
  font-weight: 600;
}

.theme-dropdown-item-check {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Dark theme dropdown styling */
[data-theme="blue-dark"] .theme-dropdown-button {
  background: #2b2b2b;
  color: #f4f4f9;
  border-color: #404040;
}

[data-theme="blue-dark"] .theme-dropdown-button:hover {
  background: #3a3a3a;
}

[data-theme="blue-dark"] .theme-dropdown-menu {
  background: #2b2b2b;
  border-color: #404040;
}

[data-theme="blue-dark"] .theme-dropdown-item {
  border-bottom-color: #404040;
  color: #f4f4f9;
}

[data-theme="blue-dark"] .theme-dropdown-item:hover {
  background: #3a3a3a;
}

[data-theme="blue-dark"] .theme-dropdown-item.active {
  background: #1e3a5f;
}

[data-theme="blue-dark"] .theme-dropdown-item-name {
  color: #f4f4f9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .theme-dropdown-wrapper {
    max-width: 100%;
  }
  
  .theme-dropdown-button {
    padding: 0.875rem 1rem;
    padding-right: 2.5rem;
  }
  
  .theme-dropdown-menu {
    max-height: 280px;
  }
}

.setting-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex: 1;
}

.setting-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.setting-text {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.profile-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.settings-btn {
  width: 100%;
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.settings-btn:hover {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

.settings-icon {
  font-size: 1.1rem;
}

.settings-text {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Dark mode settings */
body.dark .profile-settings {
  background: #1f2937;
  border-color: #374151;
}

body.dark .profile-settings h3 {
  color: #f4f4f9;
}

body.dark .setting-text {
  color: #d1d5db;
}

body.dark .profile-actions {
  border-top: 1px solid #374151;
}

/* Notification animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.logout-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.logout-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.logout-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.logout-icon {
  font-size: 1.2rem;
}

.logout-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

/* Dark mode logout button */
body.dark .profile-actions {
  border-top: 1px solid #374151;
}

body.dark .logout-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

body.dark .logout-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

/* Comprehensive Dark Mode Styles */
body.dark {
  background: #0f172a;
  color: #f1f5f9;
}

body.dark .dashboard {
  background: #0f172a;
}

body.dark header {
  background: #1e293b;
  color: #f1f5f9;
}

body.dark .stat-tile {
  background: #1e293b;
  color: #f1f5f9;
}

body.dark .tool-card {
  background: #1e293b;
  color: #f1f5f9;
}

body.dark .tool-card:hover {
  background: #334155;
}

/* Financial Education Section */
.financial-education {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.tip-card {
  background: var(--bg-card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.tip-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}

.tip-nav-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.tip-nav-btn:hover {
  background: var(--bg-hover);
  border-color: var(--primary-color);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex: 1;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.nav-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .profile-modal {
    padding: 1rem;
  }
  
  .profile-modal-content {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .profile-metrics {
    grid-template-columns: 1fr;
  }
}

/* Recommendations Section Styles - Modern Design */
.recommendations-section {
  margin-top: 3rem;
  width: 100%;
}

.recommendations {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.recommendations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0.8;
}

.recommendations h2 {
  margin: 0 0 2rem 0;
  font-size: 1.875rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: -0.02em;
}

#recommendationsContainer,
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.recommendation-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.recommendation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
}

.recommendation-card:hover::before {
  transform: scaleX(1);
}

.recommendation-card:nth-child(1) .recommendation-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.recommendation-card:nth-child(2) .recommendation-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.recommendation-card:nth-child(3) .recommendation-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.recommendation-card:nth-child(4) .recommendation-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.recommendation-icon {
  font-size: 2.5rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.recommendation-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.recommendation-card:hover .recommendation-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.recommendation-card:hover .recommendation-icon::before {
  opacity: 1;
}

.recommendation-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recommendation-content h3 {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-color, #1e293b);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.recommendation-content p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 0.9375rem;
  flex: 1;
}

.recommendation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  align-self: flex-start;
  margin-top: auto;
}

.recommendation-link::after {
  content: '→';
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.recommendation-link:hover::after {
  transform: translateX(4px);
}

.recommendation-card:nth-child(1) .recommendation-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.recommendation-card:nth-child(2) .recommendation-link {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.recommendation-card:nth-child(3) .recommendation-link {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
}

.recommendation-card:nth-child(4) .recommendation-link {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  box-shadow: 0 2px 8px rgba(67, 233, 123, 0.3);
}

.recommendation-card:nth-child(2):hover .recommendation-link {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.recommendation-card:nth-child(3):hover .recommendation-link {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.recommendation-card:nth-child(4):hover .recommendation-link {
  background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

/* Dark mode adjustments for recommendations */
[data-theme="dark"] .recommendations,
body.dark .recommendations {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-color: rgba(51, 65, 85, 0.8);
}

[data-theme="dark"] .recommendation-card,
body.dark .recommendation-card {
  background: rgba(30, 41, 59, 0.8);
  color: var(--text-color, #f1f5f9);
  border-color: rgba(51, 65, 85, 0.6);
}

[data-theme="dark"] .recommendation-card::before,
body.dark .recommendation-card::before {
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 100%);
}

[data-theme="dark"] .recommendation-content h3,
body.dark .recommendation-content h3 {
  color: var(--text-color, #f1f5f9);
}

[data-theme="dark"] .recommendation-content p,
body.dark .recommendation-content p {
  color: var(--text-muted, #cbd5e1);
}

/* Responsive adjustments for recommendations */
@media (max-width: 768px) {
  .recommendations {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .recommendations h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  #recommendationsContainer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .recommendation-card {
    padding: 1.5rem;
  }
  
  .recommendation-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #recommendationsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
