  /* ÐÓ°ÉÂÛÌ³ nk - Chat CSS + overriding award css in wordpress */

/* Factoid fade transitions */
.factoid-container {
    transition: opacity 0.5s ease-in-out;
}

.factoid-text {
    transition: opacity 0.5s ease-in-out;
}

.factoid-header {
    transition: opacity 0.5s ease-in-out;
}

/* Smooth fade in/out for factoid changes */
.factoid-fade-enter {
    opacity: 0;
}

.factoid-fade-enter-active {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.factoid-fade-exit {
    opacity: 1;
}

.factoid-fade-exit-active {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.row {
  align-items: center !important;
  display: flex !important;
  border: none !important;
}

.awardSection .container {
  overflow: auto;
  width: 100% !important;
  padding: 10rem;
}


@media (max-width: 992px) {
  .awardSection .container {
    padding: 0rem !important;
  }
  .container, .container-fluid {
      width: 100% !important;
  }
  .awardText {
      padding-left: 0px !important;
      padding-right: 0px !important;
  }
}


.awardText p {
  position: relative;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  max-width: 100%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
}

@font-face {
  font-family: 'Seaweed Script';
  src: url('/wp-content/plugins/cv-chat-flat/SeaweedScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tangerine-Regular';
  src: url('/wp-content/plugins/cv-chat-flat/Tangerine-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Tangerine-Bold';
  src: url('/wp-content/plugins/cv-chat-flat/Tangerine-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* CSS Variables */
:root {
  --primary-color: #006747;
  --primary-gradient-start: #006747;
  --primary-gradient-end: #004E42;
  --alt-green-color: #BFCEC2;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --text-white: #ffffff;
  --text-primary: #27282A;
  --text-secondary: #666;
  --border-primary: #e1e5e9;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --font-family: 'Poppins', 'Sweet Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-serif: 'Tangerine-Bold', serif;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: #f5f5f5;
}

#cv-chat-root {
  width: 100%;
}

.App {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Loading Animations */
.container-loading {
  width: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #4a5568 100%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
  margin: 1rem 0;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--primary-color);
}

.loading-animation {
  text-align: center;
  color: var(--text-white);
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--text-white);
  border-radius: 50%;
  animation: loading 1.4s infinite ease-in-out;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loading {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.loading-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
  color: var(--text-white);
}

.loading-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 400;
}

/* App Header */
.app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.app-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
}

.app-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 2rem 0;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  background: var(--bg-light);
  padding: 0.5rem;
  border-radius: 25px;
  max-width: 300px;
  margin: 0 auto;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text-secondary);
}

.toggle-btn.active {
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(0, 103, 71, 0.3);
}

.toggle-btn:hover:not(.active) {
  background: rgba(0, 103, 71, 0.1);
  color: var(--primary-color);
}

.app-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Chat App Styles */
.simple-chat-app {
  border-radius: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  padding: 2rem;
  text-align: center;
  color: var(--text-white);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.0;
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  font-family: 'Sweet Sans', var(--font-family);
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.chat-messages {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 16rem;
  scroll-behavior: smooth;
}

.message {
  max-width: 80%;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  position: relative;
  animation: fadeIn 0.3s ease-in;
}

.user-message {
  background: linear-gradient(135deg, #4d9273 0%, var(--primary-gradient-end) 100%);
  color: var(--text-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.bot-message {
  background: var(--bg-white);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px var(--shadow-light);
  border: 1px solid var(--border-primary);
  text-align: left;
}

.cv-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 50%;
}

.message-logo-container {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.topic-dropdown,
.location-dropdown {
  padding-right: 30px;
  background-image: url('/wp-content/plugins/cv-chat-flat/images/dropdown logo - white.svg');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.message-content {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: wrap;
}

/* Enhanced typography for bot messages */
.bot-message {
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

/* Formatted message styling */
.bot-message p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  text-align: left;
}

.bot-message p:last-child {
  margin-bottom: 0;
}

.bot-message strong {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Message Content Organization */
.message-section {
  margin-bottom: 20px;
  padding: 8px 0;
}

.message-subsection {
  margin-bottom: 12px;
  padding: 4px 0;
}

.message-questions {
  margin-top: 16px;
  font-weight: bold;
  color: var(--primary-color);
}

/* Date and Time Formatting */
.message-date,
.message-time {
  font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
  color: var(--primary-color);
  font-weight: 800;
}

/* Key-Value Pair Formatting */
.message-key-value {
  margin-bottom: 8px;
}

.message-key {
  font-weight: 600;
  color: var(--primary-color);
}

.message-value {
  margin-left: 8px;
}

/* Pricing Formatting */
.message-pricing {
  font-weight: 600;
  color: var(--primary-color);
}

/* Location Formatting */
.location-highlight {
  color: var(--primary-color);
  font-weight: 500;
}
.message-location {
  font-weight: 500;
  color: var(--text-primary);
}

/* Course Formatting */
.message-course {
  font-weight: 500;
  margin-bottom: 8px;
}

/* Schedule Formatting */
.message-schedule {
  margin-bottom: 12px;
}

/* Content Divider */
.message-divider {
  height: 1px;
  background: rgba(0, 102, 71, 0.2);
  margin: 16px 0;
  border-radius: 1px;
}

/* Pricing styling - using primary color for consistency */

.bot-message br {
  margin-bottom: 0.5rem;
}

/* List styling removed - keeping formatting simple */
.message.bot-message.typing{
  margin-left: 2rem;
}
.text-center ul {
  text-align: left;
  list-style-position: inside; }

.message-time {
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: right;
  font-weight: 300;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: italic;
  color: var(--text-secondary);
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-input-form {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #124a315d;
  border-top: 1px solid var(--alt-green-color);
  border-radius: 12px 12px 0 0 ;
  backdrop-filter: blur(10px);
}

.chat-input-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: center;
  min-width: 0; /* Allow container to shrink below content size */
}

.chat-input {
  flex: 1;
  min-width: 0; /* Allow input to shrink below its content size */
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-primary);
  border-radius: 25px;
  font-size: 16px;
  font-family: var(--font-family);
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input:focus {
  border-color: var(--primary-color);
}

.chat-input:disabled {
  background: var(--bg-light);
  cursor: not-allowed;
}

/* Textarea-specific styles for multi-line chat input */
.chat-textarea {
  resize: none;
  overflow-y: hidden; /* Hide scrollbar by default, controlled by JavaScript */
  min-height: 3rem; /* Minimum height for single line */
  max-height: 7.5rem; /* Maximum height (120px) */
  line-height: 1.4;
  font-family: var(--font-family);
}

.chat-textarea::-webkit-scrollbar {
  width: 4px;
}

.chat-textarea::-webkit-scrollbar-track {
  background: transparent;
}

.chat-textarea::-webkit-scrollbar-thumb {
  background: var(--border-primary);
  border-radius: 2px;
}

.chat-textarea::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.send-button {
  background: var(--primary-gradient-start);
  color: var(--text-white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  -webkit-appearance: none;
  appearance: none;
  min-width: 0; /* Allow button to shrink if needed */
}

.send-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.send-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

/* Prevent mobile zoom on inputs */
input, select, textarea {
  font-size: 16px !important;
}

/* Specifically target chat input to prevent zoom */
.chat-input {
  font-size: 16px !important;
}

/* Additional mobile zoom prevention for specific input types */
input[type="text"], 
input[type="email"], 
input[type="search"], 
input[type="tel"], 
input[type="url"], 
input[type="password"], 
input[type="number"], 
input[type="date"], 
input[type="time"], 
input[type="datetime-local"], 
input[type="month"], 
input[type="week"] {
  font-size: 16px !important;
}

/* Custom Scrollbar */
.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Conversation Topic Buttons */
.topic-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.topic-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.topic-button {
  background: rgba(0, 102, 71, 0.55);
  color: var(--text-white);
  border: 1.5px solid var(--alt-green-color);
  border-radius: 25px;
  padding: 0.5rem 2rem;
  font-size: 0.9rem;
  font-weight: 200;
  cursor: pointer;
  font-family: var(--font-family);
}

.topic-button:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.topic-button:active {
  transform: translateY(0);
}

.topic-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.1);
}

.topic-button-selected {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: var(--text-primary) !important;
}

/* Progressive Disclosure Animations */
.topic-buttons-container {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  transform-origin: center;
}

.topic-buttons {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.topic-buttons-visible {
  opacity: 1;
  transform: scaleY(1);
  max-height: 200px;
}

.topic-buttons-hidden {
  opacity: 0;
  transform: scaleY(0) translateY(-10px);
  max-height: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Change Topic Button */
.change-topic-button {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: var(--font-family);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease-out;
}

.change-topic-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.company-tag {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Privacy Policy Button Styling */
.privacy-policy-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.7rem;
  padding: 0;
  font-family: inherit;
  transition: all 0.3s ease;
  font-style: italic;
  margin-top: 2px;
}

.privacy-policy-link:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transform: translateY(-1px);
}

.privacy-policy-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 2px;
}

.privacy-policy-link:active {
  transform: translateY(0);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enrollment CTA Button */
.enrollment-cta-container {
  margin-top: 1rem;
  text-align: center;
}

.email-copy-button {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.4s ease-out 0.2s both;
}

.email-copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.email-copy-button:active {
  transform: translateY(0);
}

/* Grid Layouts */
.simple-grid {
  width: 100%;
  max-width: 800px;
}

.grid-title {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 2rem 0;
  font-weight: 300;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

/* Bento Grid Layout */
.bento-container {
  display: grid;
  grid-template-columns: 3fr 3fr 2fr;
  gap: 1rem;
  margin: 0 auto;
  width: 100%;
}

.bento-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  grid-column: 2/5;
  grid-row: 1/4;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-height: 650px;
  width: 100%;
  overflow-y: auto;
  padding-top: 2rem;
}

.logo-container {
  margin-bottom: 1rem;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid white;
}

.chat-form {
  width: 100%;
}

/* Panel Styles */
.panel-title {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 1rem;
  color: var(--primary-color);
  margin-top: 2rem;
}

.tile-back .panel-title,
.tile-back h3 {
  color: white;
}

/* Bento Grid Panels */
.locations-panel {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  grid-row: 4;
  grid-column: 4;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

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

.enrollment-panel {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  grid-row: 1/4;
  grid-column: 1;
  
}

.enrollment-panel .tile-back {
  max-height: 800px;
  overflow-y: scroll;
}

.enrollment-divider {
  width: 50px;
  height: 3px;
  background: #ff6b6b;
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.enrollment-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-primary);
  text-align: center;
}
.enrollment-cta {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient-start);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.enrollment-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.chat-form-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.find-my-fit-button {
    flex: 1;  
    padding: 0.75rem;
    background-color: white;
    color: var(--primary-gradient-end);
    border: none;
    border-radius: 4px;
    cursor: pointer;

}
.back-button {
  flex: 1;
  padding: 0.75rem;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
}
.schedule-panel {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  grid-row: 2;
}

.schedule-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 0.9rem;
}

.time {
  font-weight: 600;
  color: var(--text-primary);
}

.class {
  color: #333;
}

.courses-panel {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  grid-row: 4;
  grid-column: 1/3;
}

.courses-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.courses-content {
  padding: 1rem;
}

.social-media-panel {
  background: var(--bg-white);
  grid-row: 4;
  grid-column: 1/5;
}

.social-media-divider {
  width: 50px;
  height: 3px;
  background: #ff6b6b;
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.social-media-text {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.social-icon {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.flip-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #333;
}

.flip-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-description {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Instagram location links */
.instagram-locations {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.instagram-location-link {
  min-width: 120px;
  padding: 0.75rem;
}

.instagram-location-link .social-description {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Social media link specific styles */
.linkedin-link:hover {
  background: rgba(0, 119, 181, 0.2);
}

.facebook-link:hover {
  background: rgba(66, 103, 178, 0.2);
}

.youtube-link:hover {
  background: rgba(255, 0, 0, 0.2);
}

.tiktok-link:hover {
  background: rgba(0, 0, 0, 0.2);
}

.instagram-link:hover {
  background: rgba(225, 48, 108, 0.2);
}

.image-panel {
  grid-row: 4;
  grid-column: 3;
  padding: 0;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Bento Tile Styles */
.bento-tile {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow-light);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
  border: 1px solid var(--border-primary);
}


.tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.bento-tile.flipped .tile-inner {
  min-height: 600px;
}

/* Enrollment specific styles */
.enrollment-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem;
  height:100%;
  text-align: center;
  background: var(--bg-white);
}

.enrollment-intro h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 0 0.5rem 0;
  font-weight: 200;
}

.enrollment-intro p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.enrollment-form-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: var(--text-white);
  max-height:400px;
}

.enrollment-form-container h3 {
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  font-weight: 500;
  color: var(--text-white);
}

.enrollment-form-container p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.enrollment-success-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  color: var(--text-white);
  height: 100%;
  text-align: center;
}


/* Mobile Responsive */
@media (max-width: 1024px) {
  .App {
    padding: 0rem;
  }
  
  .app-title {
    font-size: 2.5rem;
  }
  
  .app-subtitle {
    font-size: 1rem;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .tile-front,
  .tile-back {
    padding: 1rem;
  }
  
  .simple-chat-app {
    border-radius: 8px;
  }
  
  .chat-header {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .chat-messages {
    padding: 1rem;
  }
  
  .message {
    max-width: 90%;
    padding: 0.75rem 1rem;
  }
  
  .chat-input-form {
    padding: 1rem;
  }
  
  .chat-input {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-width: 0; /* Allow input to shrink on mobile */
  }
  
  .send-button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-width: 60px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    width: auto;
    max-width: none;
    -webkit-appearance: none;
    appearance: none;
    min-width: 0; /* Allow button to shrink on mobile */
  }
  
  /* Topic buttons mobile responsive */
  .topic-buttons {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .topic-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* Progressive disclosure mobile responsive */
  .topic-buttons-container {
    margin-bottom: 1rem;
  }
  
  .change-topic-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    margin-top: 0.75rem;
  }
  
  .email-copy-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* Bento Grid Mobile Responsive */
  .bento-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 1.5rem;
    padding: 0.5rem;
  }
  
  .courses-panel,
  .social-media-panel,
  .locations-panel,
  .enrollment-panel,
  .schedule-panel,
  .image-panel {
    grid-row: auto;
    grid-column: 1;
  }
  
  .social-icons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-section {
    grid-row: 1;
    grid-column: 1;
  }
  
  .bento-item {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .app-title {
    font-size: 2rem;
  }
  
  .view-toggle {
    max-width: 250px;
  }
  
  .toggle-btn {
    padding: 0.6rem 1rem;
    font-size:1rem;
  }
  
  .simple-chat-app {
    border-radius: 0;
  }
  
  .hero-content {
    max-height:900px;
  }

  .hero-title {
    font-size: 3rem;
    padding-top:1.5rem;
  }
  
  .chat-input {
    font-size: 1rem; /* Prevent zoom on iOS */
  }
  
  /* Topic buttons small mobile responsive */
  .topic-buttons {
    gap: 0.4rem;
    margin-bottom: 1rem;
  }
  
  .topic-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  /* Bento Grid Small Mobile Responsive */
  .bento-container {
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .bento-item {
    min-height: 300px;
    padding: 0rem;
  }
  
  .panel-title {
    font-size: 1.3rem;
  }
}

/* Topic Dropdown Styling */
.topic-dropdown-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: slideInFromBottom 0.4s ease-out;
  transform-origin: left center;
}

.topic-dropdown {
  background: rgba(0, 102, 71, 0.8);
  color: var(--text-white);
  border: 2px solid var(--alt-green-color);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-family);
  min-width: 120px;
  outline: none;
  transition: all 0.3s ease;
  animation: fadeInScale 0.3s ease-out 0.1s both;
}

.topic-dropdown:hover {
  background: rgba(0, 102, 71, 0.9);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.topic-dropdown:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 71, 0.3);
}

.topic-dropdown option {
  background: var(--background-color);
  color: var(--text-white);
  padding: 0.5rem;
}

/* Topic transition animations */
.topic-buttons-container {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.topic-buttons-container.topic-transitioning-out {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  max-height: 0;
  overflow: hidden;
}

/* Animation keyframes */
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile responsiveness for topic dropdown */
@media (max-width: 768px) {
  .topic-dropdown {
    min-width: 100px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .topic-dropdown {
    min-width: 80px;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .awardImage {
    height:auto !important;
    margin-bottom:0rem !important;
  }
}

/* Location Dropdown Styling */
.location-dropdown-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: slideInFromBottom 0.4s ease-out 0.1s both;
  transform-origin: left center;
}

.location-dropdown {
  background: rgba(0, 102, 71, 0.8);
  color: var(--text-white);
  border: 2px solid var(--alt-green-color);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-family);
  min-width: 120px;
  outline: none;
  transition: all 0.3s ease;
  animation: fadeInScale 0.3s ease-out 0.2s both;
}

.location-dropdown:hover {
  background: rgba(0, 102, 71, 0.9);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.location-dropdown:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 71, 0.3);
}

.location-dropdown option {
  background: var(--background-color);
  color: var(--text-white);
  padding: 0.5rem;
}

/* Mobile responsiveness for location dropdown */
@media (max-width: 768px) {
  .location-dropdown {
    min-width: 100px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .location-dropdown {
    min-width: 80px;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

/* Location Selection Interface in Chat */
.location-selection-container {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--alt-green-color);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  width: 50%;
  animation: fadeInUp 0.4s ease-out;
  margin-left: 2rem;
}

/* Topic Factoid Styling */
.topic-factoid {
  text-align: left;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  animation: fadeInUp 0.4s ease-out 0.2s both;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.topic-factoid > div:first-child {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

.topic-factoid > div:last-child {
  opacity: 0.9;
  line-height: 1.4;
}

.topic-factoid:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.location-options {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.location-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: white;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 71, 0.3);
  border: 1px solid var(--alt-green-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.location-options label:hover {
  background: rgba(0, 102, 71, 0.5);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.location-options input[type="radio"] {
  margin: 0;
  accent-color: var(--primary-color);
}

/* Mobile responsiveness for location selection */
@media (max-width: 768px) {
  .location-options {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .location-options label {
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

/* System Note Styling */
.message.bot-message .message-content:has(+ .system-note),
.message.bot-message .system-note {
  background: rgba(0, 102, 71, 0.2);
  border-left: 3px solid var(--primary-color);
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Alternative approach for browsers that don't support :has() */
.message.bot-message .system-note {
  background: rgba(0, 102, 71, 0.2);
  border-left: 3px solid var(--primary-color);
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Add this after your existing .bento-container styles */
@media (max-width: 1326px) and (min-width: 769px) {
  .bento-container {
    padding: 2rem; /* Reduce from 10rem to 5rem for medium screens */
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .bento-container {
    padding: 2rem; /* Even smaller padding for smaller tablets */
  }
}

/* Language Toggle Button Styles */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.2);
}

.language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}

.language-toggle:active {
    transform: translateY(0);
}

.language-toggle .flag-emoji {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-toggle .flag-emoji {
        font-size: 14px;
    }
}

/* Enrollment Form Styles */
.enrollment-form {
    text-align: left;
    margin-top: 1rem;
}

.enrollment-form-field {
    margin-bottom: 1rem;
}

.enrollment-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.enrollment-form-input {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    background-color: white;
    color: #333;
    transition: all 0.2s ease;
}

.enrollment-form-input:focus {
    outline: 2px solid #006747;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(0, 103, 71, 0.2);
}

.enrollment-form-select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.enrollment-form-select:focus {
    outline: 2px solid #006747;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(0, 103, 71, 0.2);
}

.enrollment-form-option {
    padding: 0.5rem;
    background-color: white;
    color: #333;
}

.enrollment-form-checkbox-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.enrollment-form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

.enrollment-form-checkbox-label:hover {
    color: #e0e0e0;
}

.enrollment-form-checkbox {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #006747;
}

.enrollment-form-checkbox:focus {
    outline: 2px solid #006747;
    outline-offset: 2px;
}

.enrollment-form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 1.5rem 0;
}

.enrollment-form-submit-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.enrollment-form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.enrollment-form-submit-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 2px white;
}

.enrollment-form-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.enrollment-form-back-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.enrollment-form-back-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.enrollment-form-back-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Form validation styles */
.enrollment-form-input:invalid,
.enrollment-form-select:invalid {
    border: 1px solid #ff6b6b;
}

.enrollment-form-input:invalid:focus,
.enrollment-form-select:invalid:focus {
    outline: 2px solid #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* Phone validation styles */
.phone-valid {
    border: 2px solid #4caf50 !important;
    background-color: rgb(255, 255, 255);
}

.phone-valid:focus {
    outline: 2px solid #4caf50 !important;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2) !important;
}

.phone-invalid {
    border: 2px solid #ff6b6b !important;
    background-color: rgb(255, 255, 255);
}

.phone-invalid:focus {
    outline: 2px solid #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
}

.phone-validation-message {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-weight: 500;
}

.validation-success {
    color: #4caf50;
    background-color: rgba(76, 175, 80, 0.1);
}

.validation-error {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

/* Required field indicator */
.enrollment-form-label.required::after {
    content: ' *';
    color: white;
}

/* Form field help text */
.enrollment-form-help {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enrollment-form-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .enrollment-form-submit-button,
    .enrollment-form-back-button {
        padding: 0.875rem 1.25rem;
    }
    
    .enrollment-form-checkbox-container {
        grid-template-columns: 1fr;
    }
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Loading state for form submission */
.enrollment-form-submit-button.loading {
  position: relative;
  color: transparent;
}

.enrollment-form-submit-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Safari-specific fixes for send button */
@supports (-webkit-appearance: none) {
  .send-button {
    width: auto !important;
    max-width: none !important;
    min-width: 80px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    min-width: 0 !important; /* Allow button to shrink in Safari */
  }
  
  .chat-input {
    min-width: 0 !important; /* Allow input to shrink in Safari */
  }
  
  .chat-input-container {
    min-width: 0 !important; /* Allow container to shrink in Safari */
  }
  
  @media (max-width: 1024px) {
    .send-button {
      min-width: 60px !important;
    }
  }
}

/* ===== ENROLLMENT CONFIRMATION STYLES ===== */
.enrollment-confirmed {
  background: linear-gradient(135deg, #f8fff8 0%, #f0f9f0 100%);
  border: 2px solid #006747;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 103, 71, 0.1);
}

.enrollment-confirmed .enrollment-header {
  color: #006747;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0f2e0;
}

.enrollment-confirmed .enrollment-section {
  color: #2d5d4a;
  font-size: 1.1rem;
  margin: 1.2rem 0 0.6rem 0;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e0f2e0;
}

.enrollment-confirmed .enrollment-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.enrollment-confirmed .enrollment-item {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.4rem 0;
  color: #333;
}

.enrollment-confirmed .enrollment-item:before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: #006747;
  font-weight: bold;
}

.enrollment-confirmed strong {
  color: #006747;
  font-weight: 600;
}

/* Mobile responsiveness for enrollment confirmation */
@media (max-width: 768px) {
  .enrollment-confirmed {
    padding: 1rem;
    margin: 0.5rem 0;
  }
  
  .enrollment-confirmed .enrollment-header {
    font-size: 1.2rem;
  }
}

/* ===== ENHANCED FORMATTING STYLES ===== */

/* Program information formatting */
.program-item {
  background: #f8f9fa;
  padding: 0.5rem;
  margin: 0.25rem 0;
  border-left: 3px solid #006747;
  border-radius: 4px;
}

.start-date {
  background: #e8f5e8;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #155724;
}

.location {
  background: #fff3cd;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #856404;
}

.price {
  background: #d4edda;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 700;
  color: #155724;
}

/* Pricing information formatting */
.pricing-item {
  background: #f8f9fa;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

.payment-option {
  background: #e7f3ff;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #0066cc;
}

/* Enrollment information formatting */
.enrollment-step {
  background: #e7f3ff;
  padding: 0.5rem;
  margin: 0.25rem 0;
  border-left: 4px solid #0066cc;
  border-radius: 4px;
}

.phone {
  background: #fff3cd;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #856404;
}

/* Enhanced list styling */
.main-list {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.main-list li {
  margin: 0.25rem 0;
  line-height: 1.4;
}

/* Enhanced heading styling */
h2, h3 {
  margin: 1rem 0 0.5rem 0;
  color: #006747;
}

h2 {
  font-size: 3rem;
  padding-bottom: 0.25rem;
}

h3 {
  font-size: 1.1rem;
  color: #333;
}

/* ===== LIST STYLING CLASSES ===== */
.message-list {
    font-size: 1rem; /* Ensure lists have same font size as paragraphs */
    line-height: 1.6;
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-primary);
}

.message-list-item {
    font-size: 1rem; /* Ensure list items have same font size as paragraphs */
    line-height: 1.6;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

/* ===== SCHEDULE STYLING CLASSES ===== */
.schedule-days, .schedule-time, .schedule-duration, .schedule-period {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1em;
}


/* Mobile responsiveness for enhanced formatting */
@media (max-width: 768px) {
  .program-item,
  .pricing-item,
  .enrollment-step {
    padding: 0.4rem;
    margin: 0.2rem 0;
  }
  
  .start-date,
  .location,
  .price,
  .payment-option,
  .phone {
    padding: 0.15rem 0.3rem;
    font-size: 0.9rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
}

/* ===== reCAPTCHA STYLING ===== */
#recaptcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

#recaptcha-container iframe {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-height: 100px !important;
  max-width: 100% !important;
}

/* Hide the testing text that appears below reCAPTCHA */
.g-recaptcha + div[style*="font-size: 11px"] {
  display: none !important;
}

/* Hide any testing text elements */
div[style*="font-size: 11px"][style*="color: rgb(255, 255, 255)"] {
  display: none !important;
}

/* Hide reCAPTCHA testing notice */
div[style*="font-size: 11px"] {
  display: none !important;
}

/* Hide the specific reCAPTCHA alert class */
.rc-anchor-alert {
  display: none !important;
}