.dttc-container {
 /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin: 0 auto;
  padding: 20px;
  color: #333;*/
	font-family: "Josefin Sans";
	max-width: 1000px;
	margin: 20px auto;
  padding: 0;
  box-sizing: border-box;
}

.dttc-card {
  background: #fff;
  border-radius: 8px;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;*/
	padding: 20px;
  margin-bottom: 20px;
	box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.17);  
}

.dttc-title {
 /* color: #2c3e50;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 600;*/
}

.dttc-subtitle {
  /*color: #7f8c8d;*/
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 18px;
	font-weight: 600;
}

.dttc-input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.dttc-label {
  margin-bottom: 8px;
  font-weight: 500;
 /* color: #2c3e50;*/
}

.dttc-input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}

.dttc-input:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.dttc-button-group {
  display: flex;
  gap: 10px;
}

.dttc-button {
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  flex: 1;
}

/*.dttc-button-primary {
  background-color: #3498db;
  color: white;
}

.dttc-button-primary:hover {
  background-color: #2980b9;
}

.dttc-button-secondary {
  background-color: #f1f2f6;
  color: #2c3e50;
}

.dttc-button-secondary:hover {
  background-color: #dfe4ea;
}*/

.dttc-error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
  min-height: 20px;
}

.dttc-result-container {
  margin: 25px 0;
}

.dttc-result-box {
  background-color: #f8f9fa;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.dttc-result-item {
  display: flex;
  flex-direction: column;
}

.dttc-result-label {
  font-size: 14px;
  /*color: #7f8c8d;*/
  margin-bottom: 5px;
}

.dttc-result-value {
  font-size: 24px;
  font-weight: 600;
  /*color: #2c3e50;*/
}

.dttc-days-result {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;  
  padding: 10px;
  /*color: #2c3e50;
   background-color: #f1f8fe;*/
	background-color: #F7FAFC;
  border-radius: 6px;
	white-space: pre-wrap;
}

.dttc-examples {
  margin: 25px 0;
}

.dttc-examples-title, .dttc-info-title {
  /*color: #2c3e50;*/
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.dttc-examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.dttc-example-item {
  /*background-color: #f1f8fe;*/
	background-color: #F7FAFC;
  border-radius: 6px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dttc-example-decimal {
  font-weight: 500;
}

.dttc-example-arrow {
  color: #7f8c8d;
}

.dttc-example-time {
  text-align: right;
  font-size: 14px;
}

.dttc-info-list {
  padding-left: 20px;
  margin: 0;
}

.dttc-info-list li {
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  .dttc-card {
    padding: 15px;
  }
  
  .dttc-examples-grid {
    grid-template-columns: 1fr;
  }
  
  .dttc-result-box {
    flex-direction: column;
    gap: 15px;
  }
}