.seo-info-x7b9 {
  margin-top: 24px;
  padding: 16px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.seo-info-x7b9 h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #4a90e2;
  font-weight: 500;
}

.seo-info-x7b9 p {
  margin-bottom: 12px;
}

#safe-period-calculator-x7b9 {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.calc-inputs-x7b9 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}

.input-row-x7b9 {
  margin-bottom: 16px;
}

.input-row-x7b9 label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}

.date-input-x7b9 {
  padding: 8px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 14px;
  width: 180px;
  max-width: 100%;
}

.date-input-x7b9:focus {
  outline: none;
  border-color: #4a90e2;
}

.cycle-inputs-x7b9 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cycle-inputs-x7b9 > .input-row-x7b9 {
  flex: 1;
  min-width: 250px;
}

.cycle-control-x7b9 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cycle-control-x7b9 input[type="range"] {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  -webkit-appearance: none;
}

.cycle-control-x7b9 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4a90e2;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cycle-value-x7b9 {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}

.cycle-value-x7b9 input[type="number"] {
  width: 50px;
  padding: 6px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  text-align: center;
}

.calc-btn-x7b9 {
  padding: 10px 24px;
  background: #4a90e2;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.2s;
}

.calc-btn-x7b9:hover {
  background: #3a7bc8;
}

.calc-results-x7b9 {
  padding-top: 24px;
  display: none;
}

.calendars-x7b9 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .calendars-x7b9 {
    flex-direction: column;
    gap: 16px;
  }
}

.month-calendar-x7b9 {
  flex: 1;
  min-width: 300px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.calendar-header-x7b9 {
  background: #f8f9fa;
  padding: 12px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
}

.weekdays-x7b9 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.weekday-x7b9 {
  text-align: center;
  padding: 8px;
  font-size: 12px;
  color: #666;
}

.days-grid-x7b9 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #e0e0e0;
  gap: 1px;
}

.day-cell-x7b9 {
  background: white;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.day-number-x7b9 {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.day-cell-x7b9.menstrual .day-number-x7b9 {
  background: #fff3e0;
  color: #f57c00;
  font-weight: 500;
}

.day-cell-x7b9.danger .day-number-x7b9 {
  background: #ffebee;
  color: #d32f2f;
  font-weight: 500;
}

.day-cell-x7b9.safe .day-number-x7b9 {
  background: #e8f5e9;
  color: #388e3c;
}

.day-cell-x7b9.other-month {
  color: #aaa;
}

.legend-x7b9 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.legend-item-x7b9 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
}

.color-box-x7b9 {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.menstrual-color-x7b9 {
  background: #fff3e0;
  border: 1px solid #f57c00;
}

.danger-color-x7b9 {
  background: #ffebee;
  border: 1px solid #d32f2f;
}

.safe-color-x7b9 {
  background: #e8f5e9;
  border: 1px solid #388e3c;
}

.disclaimer-x7b9 {
  margin-top: 20px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #4a90e2;
}

.disclaimer-title-x7b9 {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.disclaimer-text-x7b9 {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}