/* Chitran Art School Plugin Styles - Clean and Professional */

:root {
  --chitran-primary: #ffffff;
  --chitran-secondary: #000000;
  --chitran-blue: #007cba;
  --chitran-blue-dark: #0056b3;
  --chitran-light-blue: #e6f3ff;
  --chitran-border: #e0e0e0;
  --chitran-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --chitran-success: #28a745;
  --chitran-warning: #ffc107;
  --chitran-danger: #dc3545;
  --chitran-text: #333333;
  --chitran-text-muted: #666666;
}

.chitran-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  /* Enhanced font family with better typography and improved readability */
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Enhanced login forms with professional styling */
.chitran-login-form {
  background: var(--chitran-primary);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: 50px auto;
  text-align: center;
  border: 1px solid var(--chitran-border);
  position: relative;
  overflow: hidden;
}

.chitran-login-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--chitran-blue), #0073aa);
}

.chitran-login-form h2 {
  color: var(--chitran-text);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.chitran-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--chitran-border);
  border-radius: 12px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
  box-sizing: border-box;
}

.chitran-input:focus {
  border-color: var(--chitran-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 124, 186, 0.1);
  background: var(--chitran-primary);
  transform: translateY(-1px);
}

.chitran-btn {
  background: linear-gradient(135deg, var(--chitran-blue) 0%, #0073aa 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-sizing: border-box;
}

.chitran-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.chitran-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 124, 186, 0.3);
}

.chitran-btn:active {
  transform: translateY(0);
}

/* Enhanced dashboard with modern card design */
.chitran-dashboard {
  background: var(--chitran-primary);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border: 1px solid var(--chitran-border);
}

/* Removed welcome section styling since welcome message is removed */

.chitran-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.chitran-card {
  background: var(--chitran-primary);
  border: 1px solid var(--chitran-border);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.chitran-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chitran-blue), #0073aa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.chitran-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 124, 186, 0.15);
}

.chitran-card h3 {
  color: var(--chitran-text);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

/* Enhanced profile card styling */
.chitran-profile-card {
  order: -2; /* Ensure profile card appears first */
}

.chitran-progress-card {
  order: -1; /* Ensure progress card appears second */
}

.chitran-profile-header {
  text-align: center;
  margin-bottom: 20px;
}

/* Enhanced student details with better typography and bold styling */
.chitran-profile-details p {
  margin: 12px 0;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.chitran-profile-details p strong {
  font-weight: 700;
  color: var(--chitran-text);
  font-size: 16px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
}

.chitran-profile-details p:last-child {
  border-bottom: none;
}

/* Enhanced progress bar with smooth animations */
.chitran-progress {
  background: #f0f0f1;
  border-radius: 12px;
  height: 24px;
  overflow: hidden;
  margin: 15px 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.chitran-progress-bar {
  background: linear-gradient(90deg, var(--chitran-blue) 0%, #0073aa 50%, var(--chitran-success) 100%);
  height: 100%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.chitran-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
  animation: shimmer 2s infinite;
}

.chitran-progress-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chitran-progress-milestones {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.milestone {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: #f0f0f0;
  color: var(--chitran-text-muted);
  transition: all 0.3s ease;
}

.milestone.completed {
  background: var(--chitran-success);
  color: white;
}

/* Enhanced upload card styling with dual button layout */
.chitran-upload-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.chitran-upload-options .chitran-btn {
  min-width: 160px;
  font-weight: 600;
  flex: 1;
}

/* Enhanced upload methods with file upload area styling */
.chitran-upload-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

/* File upload section styling */
.chitran-file-upload-section {
  margin-bottom: 20px;
}

.chitran-upload-area {
  border: 2px dashed rgba(0, 124, 186, 0.3); /* Thicker, colored border */
  border-radius: 16px; /* Increased border radius */
  padding: 35px 25px; /* Increased padding */
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.chitran-upload-area:hover,
.chitran-upload-area.chitran-drag-over {
  border-color: var(--chitran-blue);
  background: linear-gradient(135deg, rgba(0, 124, 186, 0.05) 0%, #ffffff 100%); /* Blue tinted background */
  transform: translateY(-3px); /* More pronounced lift */
  box-shadow: 0 15px 40px rgba(0, 124, 186, 0.15); /* Enhanced shadow */
}

.chitran-upload-area.chitran-drag-over {
  border-style: solid;
  background: linear-gradient(135deg, rgba(0, 124, 186, 0.1) 0%, #e6f3ff 100%);
  border-width: 4px; /* Thicker border when dragging */
}

.chitran-upload-icon {
  margin-bottom: 25px; /* Increased margin */
  color: var(--chitran-blue);
}

.chitran-upload-icon svg {
  width: 48px; /* Larger icon */
  height: 48px;
  filter: drop-shadow(0 4px 8px rgba(0, 124, 186, 0.2)); /* Added shadow */
}

.chitran-upload-area h3 {
  font-size: 20px; /* Larger heading */
  font-weight: 700;
  color: var(--chitran-text);
  margin-bottom: 12px;
}

.chitran-upload-area p {
  font-size: 14px; /* Larger text */
  color: var(--chitran-text-muted);
  margin-bottom: 20px;
}

.chitran-upload-note {
  color: var(--chitran-text-muted);
  font-size: 12px;
  margin-top: 10px;
  display: block;
}

/* Enhanced profile picture section styles */
.chitran-profile-picture-section {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.chitran-profile-picture {
  position: relative;
  width: 250px; /* Increased from 150px to 250px for much bigger size */
  height: 250px; /* Increased from 150px to 250px for much bigger size */
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--chitran-border); /* Increased border width from 4px to 6px */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); /* Enhanced shadow for bigger size */
}

.chitran-profile-picture:hover {
  border-color: var(--chitran-blue);
  transform: scale(1.02); /* Reduced scale from 1.05 to 1.02 for bigger images */
  box-shadow: 0 16px 50px rgba(0, 124, 186, 0.25); /* Enhanced hover shadow */
}

.chitran-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chitran-profile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chitran-text-muted);
}

.chitran-profile-placeholder svg {
  width: 60px; /* Increased icon size */
  height: 60px;
}

.chitran-profile-edit-btn {
  position: absolute;
  bottom: 8px; /* Adjusted position for bigger profile picture */
  right: 8px; /* Adjusted position for bigger profile picture */
  width: 50px; /* Increased from 40px to 50px */
  height: 50px; /* Increased from 40px to 50px */
  border-radius: 50%;
  background: var(--chitran-blue);
  color: white;
  border: 3px solid white; /* Increased border from 2px to 3px */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* Increased icon size from 16px to 20px */
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced modal with modern design */
.chitran-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(4px);
}

.chitran-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); /* Added gradient background */
  margin: 5% auto; /* Reduced top margin */
  padding: 0;
  border-radius: 16px; /* Reduced border radius */
  width: 85%; /* Reduced width from 95% to 85% */
  max-width: 600px; /* Reduced max width from 800px to 600px */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); /* Reduced shadow */
  animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 2px solid rgba(0, 124, 186, 0.1);
}

.chitran-modal-header {
  padding: 20px 30px; /* Reduced padding from 30px 40px */
  background: linear-gradient(135deg, var(--chitran-blue) 0%, #0056b3 100%); /* Blue gradient header */
  color: white; /* White text */
  border-bottom: none; /* Removed border */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chitran-modal-header h2 {
  margin: 0;
  color: white; /* White text */
  font-size: 22px; /* Reduced font size from 26px */
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chitran-close {
  color: rgba(255, 255, 255, 0.8); /* White close button */
  font-size: 28px; /* Reduced font size from 32px */
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 6px; /* Reduced padding from 8px */
  border-radius: 50%;
  width: 42px; /* Reduced width from 50px */
  height: 42px; /* Reduced height from 50px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.chitran-close:hover,
.chitran-close:focus {
  color: white;
  background: rgba(255, 255, 255, 0.2); /* Enhanced hover state */
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  outline: none;
}

.chitran-modal-body {
  padding: 25px 30px; /* Reduced padding from 40px */
  max-height: 65vh; /* Reduced max height from 75vh */
  overflow-y: auto;
  background: white; /* White background */
}

.chitran-modal-footer {
  padding: 20px 30px; /* Reduced padding from 25px 40px */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); /* Gradient footer */
  border-top: 2px solid rgba(0, 124, 186, 0.1);
  display: flex;
  gap: 15px; /* Reduced gap from 20px */
  justify-content: flex-end;
  align-items: center;
}

/* Enhanced gallery with modern grid layout */
.chitran-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.chitran-artwork {
  background: var(--chitran-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--chitran-border);
}

.chitran-artwork:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 124, 186, 0.15);
}

.chitran-artwork img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.chitran-artwork:hover img {
  transform: scale(1.05);
}

.chitran-artwork-info {
  padding: 20px;
}

.chitran-artwork-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--chitran-text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.chitran-artwork-message {
  color: var(--chitran-text);
  margin: 10px 0;
  font-style: italic;
}

.chitran-feedback-received {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
}

.chitran-feedback-pending {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 10px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #856404;
}

/* Enhanced file preview styling */
.chitran-file-preview {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--chitran-border);
  border-radius: 12px;
  padding: 15px;
  margin: 10px 0;
  transition: all 0.3s ease;
  position: relative;
}

.chitran-file-preview:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.chitran-preview-image {
  position: relative;
  margin-right: 15px;
}

.chitran-preview-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--chitran-border);
}

.chitran-remove-file {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--chitran-danger);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.chitran-remove-file:hover {
  background: #c82333;
  transform: scale(1.1);
}

.chitran-preview-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chitran-file-name {
  font-weight: 600;
  color: var(--chitran-text);
  margin-bottom: 5px;
  word-break: break-word;
}

.chitran-file-size {
  color: var(--chitran-text-muted);
  font-size: 14px;
}

/* Enhanced profile picture modal styles */
.chitran-profile-upload-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.chitran-upload-option {
  width: 100%;
  max-width: 300px;
}

.chitran-upload-option .chitran-btn {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chitran-profile-preview {
  text-align: center;
  padding: 20px;
}

.chitran-profile-preview-container {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.chitran-profile-preview-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--chitran-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chitran-profile-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.chitran-profile-actions .chitran-btn {
  min-width: 140px;
  padding: 12px 20px;
}

/* Enhanced success and error message styles */
.chitran-success {
  background: linear-gradient(135deg, #d1e7dd 0%, #c3e6cb 100%);
  color: #155724;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--chitran-success);
  margin: 15px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chitran-success::before {
  content: "✓";
  font-weight: bold;
  font-size: 18px;
}

.chitran-error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--chitran-danger);
  margin: 15px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chitran-error::before {
  content: "⚠";
  font-weight: bold;
  font-size: 18px;
}

/* Enhanced animations with better easing */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Enhanced loading animation */
.chitran-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

/* Enhanced responsive design */
@media (max-width: 768px) {
  .chitran-container {
    padding: 15px;
  }

  .chitran-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .chitran-modal-content {
    width: 90%; /* Adjusted mobile width */
    margin: 8% auto; /* Adjusted mobile margin */
    max-width: none;
  }

  .chitran-modal-header {
    padding: 15px 20px; /* Further reduced mobile padding */
  }

  .chitran-modal-body {
    padding: 20px; /* Reduced mobile body padding */
    max-height: 60vh; /* Reduced mobile max height */
  }

  .chitran-modal-footer {
    padding: 15px 20px; /* Reduced mobile footer padding */
  }

  .chitran-login-form {
    padding: 30px 25px;
    margin: 30px auto;
  }

  /* Mobile-specific upload styling */
  .chitran-upload-options {
    flex-direction: column;
  }

  .chitran-upload-options .chitran-btn {
    width: 100%;
  }

  .chitran-camera-controls {
    flex-direction: column;
    align-items: center;
  }

  .chitran-camera-controls .chitran-btn {
    width: 100%;
    max-width: 200px;
  }

  .chitran-profile-upload-options {
    flex-direction: column;
    align-items: center;
  }

  .chitran-profile-upload-options .chitran-btn {
    width: 100%;
    max-width: 200px;
  }

  .chitran-modal-footer {
    flex-direction: column;
    gap: 10px;
  }

  .chitran-modal-footer .chitran-btn {
    width: 100%;
  }

  .chitran-profile-picture {
    width: 180px; /* Increased mobile size from 100px to 180px */
    height: 180px; /* Increased mobile size from 100px to 180px */
  }

  .chitran-profile-edit-btn {
    width: 40px; /* Increased mobile edit button from 28px to 40px */
    height: 40px; /* Increased mobile edit button from 28px to 40px */
    bottom: 5px; /* Adjusted position */
    right: 5px; /* Adjusted position */
  }
}

@media (max-width: 480px) {
  .chitran-upload-area {
    padding: 25px 15px;
  }

  .chitran-modal-content {
    width: 95%; /* Full width on small screens */
    margin: 10% auto;
  }

  .chitran-modal-header h2 {
    font-size: 18px; /* Smaller heading on mobile */
  }

  .chitran-close {
    width: 36px; /* Smaller close button on mobile */
    height: 36px;
    font-size: 24px;
  }

  .chitran-gallery {
    grid-template-columns: 1fr;
  }

  .chitran-profile-picture {
    width: 150px; /* Increased smallest mobile size from 70px to 150px */
    height: 150px; /* Increased smallest mobile size from 70px to 150px */
  }

  .chitran-profile-edit-btn {
    width: 35px; /* Increased from 24px to 35px */
    height: 35px; /* Increased from 24px to 35px */
    font-size: 16px; /* Added larger icon size for small screens */
  }
}

/* Professional typography improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--chitran-text);
}

p {
  color: var(--chitran-text-muted);
  line-height: 1.6;
}

/* Enhanced focus states for accessibility */
.chitran-btn:focus,
.chitran-input:focus {
  outline: 2px solid var(--chitran-blue);
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
* {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s
    ease;
}
