/* Base Styles */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #f8f9fa;
}

/* Header Styles */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2563eb !important;
  text-decoration: none;
}

.brand-icon {
  font-size: 1.3rem;
  color: #f59e0b;
}

.brand-text {
  color: #3b82f6;
  font-weight: 800;
  font-size: 1.4rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}



/* Main Content Styles */
.bitcoin-analysis {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.bitcoin-text {
  color: #3b82f6;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* BUY Recommendation Section */
.buy-recommendation {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 1px solid #86efac;
  transition: all 0.3s ease;
}

.buy-recommendation.buy {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 1px solid #86efac;
}

.buy-recommendation.buy .recommendation-text {
  color: #065f46;
}

.buy-recommendation.hold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
}

.buy-recommendation.hold .recommendation-text {
  color: #92400e;
}

.buy-recommendation.avoid {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #dc2626;
}

.buy-recommendation.avoid .recommendation-text {
  color: #991b1b;
}

.check-icon {
  font-size: 2.5rem;
  color: #059669;
  margin-bottom: 0.75rem;
}

.buy-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.25rem;
}

.hold-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}

.avoid-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.25rem;
}

.recommendation-text {
  font-size: 1rem;
  font-weight: 600;
  color: #065f46;
  margin: 0;
}

/* Skeleton Loader Styles */
.skeleton-loader {
    display: block;
    width: 100%;
}

@keyframes skeleton-pulse {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #f0f0f0;
    }
    100% {
        background-color: #e0e0e0;
    }
}

.skeleton-recommendation {
    height: 120px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-summary {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #e0e0e0;
}

.skeleton-pros-cons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.skeleton-item {
    flex: 1;
    height: 200px;
    border-radius: 10px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-market-data {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}


/* Loading and Error States */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  animation: pulse 2s infinite;
}

.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: #dc2626;
  font-weight: 500;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Dynamic Content Styling */
.positive {
  color: #059669 !important;
}

.negative {
  color: #dc2626 !important;
}

/* Analysis Summary Section */
.analysis-summary {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Progress Indicators */
.progress-indicators {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.progress-item {
  text-align: center;
  flex: 1;
}

.progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 8px solid;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.progress-circle:hover {
  transform: scale(1.05);
}

.confidence-circle {
  border-color: #f59e0b;
}

.confidence-circle .progress-value,
.confidence-circle .progress-label {
  color: #f59e0b;
}

.risk-circle {
  border-color: #10b981;
}

.risk-circle .progress-value,
.risk-circle .progress-label {
  color: #10b981;
}

.market-circle {
  border-color: #10b981;
}

.market-circle .progress-value,
.market-circle .progress-label {
  color: #10b981;
}

/* Dynamic score-based colors */
.progress-circle.excellent {
  border-color: #059669;
}

.progress-circle.excellent .progress-value,
.progress-circle.excellent .progress-label {
  color: #059669;
}

.progress-circle.good {
  border-color: #10b981;
}

.progress-circle.good .progress-value,
.progress-circle.good .progress-label {
  color: #10b981;
}

.progress-circle.average {
  border-color: #f59e0b;
}

.progress-circle.average .progress-value,
.progress-circle.average .progress-label {
  color: #f59e0b;
}

.progress-circle.poor {
  border-color: #dc2626;
}

.progress-circle.poor .progress-value,
.progress-circle.poor .progress-label {
  color: #dc2626;
}

.progress-circle.very-poor {
  border-color: #991b1b;
}

.progress-circle.very-poor .progress-value,
.progress-circle.very-poor .progress-label {
  color: #991b1b;
}

.progress-inner {
  text-align: center;
}

.progress-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.progress-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.progress-description {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.analysis-note {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

/* Why Section */
.why-section {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.why-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.why-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 2px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.why-list li {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1rem;
  border-radius: 6px;
  border-left: 4px solid #3b82f6;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
  position: relative;
  transition: all 0.2s ease;
}

.why-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.why-list li::before {
  content: '→';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Pros and Cons Section */
.pros-cons-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.pros-cons-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  border-radius: 12px 12px 0 0;
}

.pros-cons-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.pros-cons-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.pros-cons-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  border-radius: 2px;
}

.pros-cons-header p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.analysis-container {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}

.pros-section, .cons-section {
  flex: 1;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.pros-section:hover, .cons-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.pros-section::before, .cons-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
}

.pros-section::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.cons-section::before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.section-header {
  padding: 1rem 1rem;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header.positive {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-bottom-color: #86efac;
}

.section-header.negative {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-bottom-color: #fca5a5;
}

.section-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.section-header.positive h3 {
  color: #065f46;
}

.section-header.negative h3 {
  color: #991b1b;
}

.section-header h3::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.section-header.positive h3::before {
  content: '✓';
  background: #10b981;
  color: white;
}

.section-header.negative h3::before {
  content: '✗';
  background: #ef4444;
  color: white;
}

.pros-content, .cons-content {
  padding: 1rem;
  background: white;
}

.pro-item, .con-item {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid #f3f4f6;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pro-item::before, .con-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
}

.pro-item::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.con-item::before {
  background: linear-gradient(180deg, #ef4444, #f87171);
}

.pro-item:last-child, .con-item:last-child {
  margin-bottom: 0;
}

.pro-item:hover, .con-item:hover {
  transform: translateX(6px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-color: #e5e7eb;
}

.pro-item:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.con-item:hover {
  background: linear-gradient(135deg, #fef2f2 0%, #fef2f2 100%);
}

.pro-item strong, .con-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
  line-height: 1.4;
}

.pro-item p, .con-item p {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.pro-item .impact-badge, .con-item .impact-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pro-item .impact-badge {
  background: #d1fae5;
  color: #065f46;
}

.con-item .impact-badge {
  background: #fee2e2;
  color: #991b1b;
}

/* Recommendation Section */
.recommendation-section {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.recommendation-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.recommendation-section p {
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.buy-buttons {
  display: flex;
  gap: 0.75rem;
}

.buy-btn {
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
}

.buy-btn:hover {
  transform: translateY(-1px);
}

/* Market Data Section */
.market-data-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.market-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.market-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.market-header p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.bitcoin-info {
  width: 100%;
  margin: 0;
}

/* Coin Header Card */
.coin-header-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #f59e0b;
}

.coin-icon-large {
  margin-right: 1rem;
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.coin-icon-large img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.coin-details h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 700;
}

.coin-symbol {
  color: #6b7280;
  font-weight: 500;
}

.coin-rank {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Price Display Card */
.price-display-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #86efac;
  text-align: center;
}

.price-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.current-price-large {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
}

.price-change-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.price-change-badge.positive {
  background: #10b981;
  color: white;
}

.price-change-badge.negative {
  background: #dc2626;
  color: white;
}

.price-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trend-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.trend-value {
  font-size: 1rem;
  font-weight: 600;
}

.trend-value.positive {
  color: #059669;
}

.trend-value.negative {
  color: #dc2626;
}

/* Market Stats Grid */
.market-stats-grid {
  margin-bottom: 1rem;
}

.stats-section {
  margin-bottom: 1rem;
}

.stats-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.2rem;
}

.stat-value.positive {
  color: #059669;
}

.stat-value.negative {
  color: #dc2626;
}

.stat-subtext.positive {
  color: #059669;
}

.stat-subtext.negative {
  color: #dc2626;
}

.stat-subtext {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Action Buttons */
.market-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 180px;
  justify-content: center;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  font-size: 1rem;
}

.btn-text {
  font-size: 0.9rem;
}

.btn-link {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Footer */
.footer-section {
  background-color: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .progress-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .analysis-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pros-section, .cons-section {
    margin-bottom: 0;
  }
  
  .pro-item, .con-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .pro-item:hover, .con-item:hover {
    transform: translateX(3px);
  }
  
  .section-header {
    padding: 0.75rem 0.75rem;
  }
  
  .section-header h3 {
    font-size: 1.1rem;
  }
  
  .pros-content, .cons-content {
    padding: 0.75rem;
  }
  
  .pros-cons-header h2 {
    font-size: 1.5rem;
  }
  
  .pros-cons-header p {
    font-size: 0.9rem;
  }
  
  .buy-buttons,
  .market-buy-buttons {
    flex-direction: column;
  }
  
  .stats-cards {
    grid-template-columns: 1fr;
  }
  
  .price-main {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .current-price-large {
    font-size: 2rem;
  }
  
  .action-btn {
    min-width: 100%;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .price-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Focus states for accessibility */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Data Attribution Styles */
.data-attribution {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0.5rem;
}

.attribution-text {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.attribution-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.attribution-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.attribution-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(-20px);
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}