/* Base styles */
:root { 
  color-scheme: light; 
  supported-color-schemes: light; 
}

html, body {
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
  background-color: #f3f3f3;
}

* { 
  -ms-text-size-adjust: 100%; 
  -webkit-text-size-adjust: 100%; 
}

table, td {
  mso-table-lspace: 0pt !important;
  mso-table-rspace: 0pt !important;
}

table {
  border-spacing: 0 !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  margin: 0 auto !important;
}

/* Email-specific styles */
.email-body {
  margin: 0; 
  padding: 0; 
  width: 100%;
  background-color: #f3f3f3;
}

.email-center {
  width: 100%; 
  background-color: #f3f3f3;
}

.main-table {
  width: 100%;
  height: 60vh;
  min-height: 60vh;
}

.main-td {
  align: center;
  valign: middle;
}

.email-container {
  max-width: 600px; 
  margin: 0 auto;
}

.content-table {
  width: 100%;
}

.content-td {
  background-color: #ffffff; 
  padding: 40px 48px;
}

.content-header {
  border-top: 4px solid #00a88e;
}

.spacer-td {
  background-color: #ffffff; 
  font-size: 0; 
  line-height: 0;
  height: 30px !important;
}

/* Typography */
h2 {
  color: #00a88e;
  text-align: center;
  margin: 0 0 24px 0;
  font-family: Arial, sans-serif;
}

p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #1d1d1b;
  margin: 16px 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* Utility classes */
.link { 
  color: #00a88e; 
  text-decoration: underline; 
}

.button {
  display: inline-block;
  background-color: #00a88e;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Schedule table styles */
.schedule-table {
  width: 100%;
  margin: 16px 0 24px 0;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 8px 0;
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

/* Media queries */
@media only screen and (max-width: 600px) {
  .mobile-only { 
    display: block !important; 
  }
  
  .desktop-only { 
    display: none !important; 
  }
  
  .email-container { 
    width: 100% !important; 
  }
  
  .button { 
    width: 100% !important; 
    text-align: center !important; 
  }
}