body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #eceff1;
  color: #1a1a1a;
}

.header {
  background: linear-gradient(to right, #3a64f0, #6941c6);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.header-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.brand-text {
  margin-left: 12px;
  font-weight: bold;
  font-size: 18px;
}

/* Pricing Page Styles */
.pricing-hero {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.pricing-hero p {
  font-size: 18px;
  color: #666;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
}

.pricing-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card .plan-features {
  flex-grow: 1;
  margin-bottom: 25px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.premium {
  border: 2px solid #3a64f0;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #3a64f0, #6941c6);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.plan-header {
  text-align: center;
  margin-bottom: 25px;
}

.plan-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: #3a64f0;
  margin-bottom: 5px;
}

.price span {
  font-size: 16px;
  color: #666;
  font-weight: normal;
}

.plan-header p {
  color: #666;
  font-size: 14px;
}

.plan-description {
  margin-bottom: 20px;
  text-align: center;
}

.plan-description p {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plan-features li {
  padding: 8px 0;
  color: #333;
  font-size: 14px;
}

.plan-button {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button.primary {
  background: linear-gradient(to right, #3a64f0, #6941c6);
  color: white;
}

.plan-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 100, 240, 0.4);
}

.plan-button:not(.primary) {
  background: #f0f0f0;
  color: #333;
}

.plan-button:not(.primary):hover {
  background: #e0e0e0;
}

.plan-button:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}

.plan-button:not(.primary) {
  background: #f8f9fa;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.plan-button:not(.primary):hover {
  background: #e9ecef;
  color: #495057;
}

.pricing-faq {
  margin-top: 80px;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

.faq-item a {
  color: #3a64f0;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Legal Pages Styles */
.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
  text-align: center;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 2px solid #3a64f0;
  padding-bottom: 8px;
}

.legal-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content a {
  color: #3a64f0;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 60px 20px 40px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.highlight {
  color: #6941c6;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.input-card {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 28px 24px 28px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.input-card .textarea-wrapper {
  position: relative;
}

.input-card textarea {
  width: 100%;
  height: 130px;
  padding: 16px 44px 16px 16px;
  font-size: 16px;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  resize: vertical;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: #fafbfc;
  transition: border 0.2s;
}
.input-card textarea:focus {
  border: 1.5px solid #3a64f0;
  outline: none;
}

#clear-message {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#clear-message:hover {
  background: #e0e0e0;
  color: #3a64f0;
}

.usage-counter {
  text-align: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: #666;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.usage-counter span {
  font-weight: bold;
  color: #3a64f0;
}

.example {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.input-card button {
  background: linear-gradient(to right, #3a64f0, #6941c6);
  border: none;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.upload-area {
  margin-top: 30px;
}

.upload-area p {
  font-size: 15px;
  color: #333;
}

.upload-area button {
  background-color: #f0f0f0;
  border: 1px dashed #999;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.upload-area button:hover {
  background-color: #e0e0e0;
  border-color: #666;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Pulse animation for upload button */
.upload-area button:not(.button-loading) {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 100, 240, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(58, 100, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 100, 240, 0);
  }
}

/* Stop pulse when loading */
.upload-area button.button-loading {
  animation: none;
}

/* Bounce animation for image preview */
.image-preview img {
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide down animation for analysis results */
.analysis-result {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.examples {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.examples h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.examples p {
  font-size: 16px;
  margin-bottom: 30px;
}

.card-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.example-card {
  width: 280px;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  background-color: #fafafa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.example-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.example-card p {
  font-size: 14px;
  margin-bottom: 12px;
}

.confidence {
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
}

.red {
  background-color: #fee2e2;
  color: #b91c1c;
}

.orange {
  background-color: #fef3c7;
  color: #b45309;
}

.green {
  background-color: #d1fae5;
  color: #047857;
}

.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.features p {
  font-size: 16px;
  margin-bottom: 30px;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.feature-card {
  width: 280px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #333;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f5f7fa;
  border-top: 1px solid #e0e0e0;
  padding: 32px 8vw 16px 8vw;
  margin-top: 48px;
  font-size: 1rem;
  color: #1a2a6c;
}

.footer-left {
  max-width: 320px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links h5 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #3a64f0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #1a2a6c;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #3a64f0;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social svg {
  vertical-align: middle;
  transition: transform 0.2s;
}

.footer-social a:hover svg {
  transform: scale(1.15);
}

@media (max-width: 800px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 5vw 16px 5vw;
}
  .footer-links {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
}

.copyright {
  background-color: #0f172a;
  text-align: center;
  padding: 16px;
  color: #bbb;
  font-size: 13px;
}
#result, .analysis-result {
  max-width: 420px;
  margin: 32px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #e0e6ed;
  padding: 28px 24px;
  font-size: 1.08rem;
  color: #222;
  line-height: 1.6;
  text-align: left;
  word-break: break-word;
}

#result ul {
  padding-left: 20px;
}

#result li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.analysis-result {
  max-width: 600px;
  margin: 30px auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  border-left: 8px solid #d1fae5; /* default green */
}

.analysis-result h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.analysis-result ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.analysis-result li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.analysis-result .confidence {
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  margin-top: 15px;
}

/* צבעי סיכון */
.analysis-result.red { border-left-color: #fee2e2; }
.analysis-result.orange { border-left-color: #fef3c7; }
.analysis-result.green { border-left-color: #d1fae5; }
.analysis-result {
  max-width: 600px;
  margin: 30px auto 0;
  padding: 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.analysis-result ul {
  padding-left: 20px;
  text-align: left;
}

.analysis-result li {
  margin-bottom: 10px;
}

.analysis-result .confidence {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

/* Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

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

.button-loading {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  padding: 0;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: linear-gradient(to right, #3a64f0, #6941c6);
  color: white;
  padding: 20px 24px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
}

.close {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.8;
}

.close:hover {
  opacity: 1;
}

.modal-body {
  padding: 24px;
}

.modal-body p {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-primary {
  background: linear-gradient(to right, #3a64f0, #6941c6);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.btn-secondary {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: bold;
  color: #1a2a6c;
  letter-spacing: 1px;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
.brand-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a2a6c;
  letter-spacing: 1px;
}

.content-page {
  max-width: 700px;
  margin: 40px auto 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #e0e6ed;
  padding: 36px 32px 32px 32px;
}
.faq-list h3 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #3a64f0;
  display: flex;
  align-items: center;
}
.faq-list p {
  margin-bottom: 18px;
  color: #222;
}
.privacy-list, .privacy-list ul {
  margin-bottom: 18px;
  color: #222;
}
.privacy-list h3 {
  margin-top: 32px;
  margin-bottom: 8px;
  color: #3a64f0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.privacy-list h3::before {
  content: "🔒";
  margin-right: 8px;
  font-size: 1.1em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 28px 20px 20px 20px;
  box-shadow: 0 1px 8px 0 #e0e6ed;
  max-width: 420px;
  margin: 32px auto 0 auto;
}
.contact-form label {
  font-weight: 500;
  color: #3a64f0;
  margin-bottom: 2px;
}
.contact-form input, .contact-form textarea {
  border: 1px solid #d0d7e2;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid #3a64f0;
  outline: none;
}
.contact-form button {
  background: #3a64f0;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #1a2a6c;
}
@media (max-width: 600px) {
  .content-page {
    padding: 18px 4vw 18px 4vw;
  }
  .contact-form {
    padding: 16px 4vw 16px 4vw;
  }
  
  .header {
    padding: 12px 20px;
  }
  
  .brand-text {
    display: none;
  }
  
  .header-actions {
    gap: 15px;
  }
  
  .header-link {
    font-size: 13px;
  }
  
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 0;
  }
  
  .pricing-card {
    min-width: 0;
    width: 96vw;
    max-width: 98vw;
    margin: 0 auto 0 auto;
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    padding: 28px 6vw 28px 6vw;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    background: #fff;
  }
  .plan-header, .plan-description, .plan-features, .plan-button {
    text-align: center;
    align-items: center;
  }
  .plan-features li {
    text-align: left;
    padding-left: 10px;
  }
}

/* --- Upgraded Footer Styles --- */
.upgraded-footer {
  background: #181c24;
  color: #f3f4f6;
  padding: 40px 0 20px 0;
  border-top: 1px solid #23262f;
  font-size: 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 32px;
}
.footer-brand {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 24px;
}
.footer-slogan {
  color: #b0b3bb;
  font-size: 0.98rem;
  margin-top: 8px;
}
.footer-columns {
  display: flex;
  flex: 2 1 400px;
  gap: 48px;
  min-width: 300px;
  justify-content: flex-end;
}
.footer-col h5 {
  color: #f3f4f6;
  font-size: 1.08rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #b0b3bb;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-social li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.upgraded-copyright {
  background: #181c24;
  color: #b0b3bb;
  text-align: center;
  font-size: 0.98rem;
  padding: 10px 0 16px 0;
  border-top: 1px solid #23262f;
}
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 18px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    min-width: unset;
    justify-content: flex-start;
  }
  .footer-brand {
    margin-bottom: 10px;
  }
}

/* --- Result Card Modern Styles --- */
.result-card {
  max-width: 370px;
  margin: 36px auto 0 auto;
  border-radius: 18px;
  box-shadow: 0 2px 18px #e0e6ed;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  animation: bounceIn 0.5s;
}
.result-card.red {
  background: linear-gradient(135deg, #e53935 60%, #ffb3b3 100%);
}
.result-card.orange {
  background: linear-gradient(135deg, #ff9800 60%, #ffe0b2 100%);
  color: #442c00;
}
.result-card.green {
  background: linear-gradient(135deg, #43a047 60%, #b9f6ca 100%);
  color: #0b3d1c;
}
.result-icon {
  font-size: 3.2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.result-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.result-confidence {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0.92;
}
.result-desc {
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 500;
  opacity: 0.95;
}
.result-card .result-action {
  background: rgba(255,255,255,0.18);
  color: inherit;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.18s;
}
.result-card .result-action:hover {
  background: rgba(255,255,255,0.32);
}
@media (max-width: 600px) {
  .result-card {
    max-width: 98vw;
    padding: 22px 4vw 18px 4vw;
  }
}

.disclaimer {
  margin: 24px auto 0 auto;
  max-width: 500px;
  color: #666;
  font-size: 0.98em;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 18px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
