/* Style scoped for the Domain Cleaner tool */
.app-container {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 20px auto;
}

.app-title {
  font-size: 2.5em;
  color: #343541;
  text-align: center;
  margin-bottom: 20px;
}

.app-form {
  margin-bottom: 20px;
}

.app-form label {
  display: block;
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

textarea#input-domains {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

button#clean-button {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

button#clean-button:hover {
  background-color: #45a049;
}

.app-output {
  font-size: 1.2em;
  margin-top: 20px;
  color: #343541;
}

.app-output p {
  font-weight: bold;
  margin-bottom: 10px;
}

.no-bullets {
  list-style-type: none;
  padding-left: 0;
  color: #555;
  font-size: 1em;
}

.no-bullets li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

/* Responsive styles */
@media (max-width: 600px) {
  .app-container {
    padding: 15px;
  }
  
  .app-title {
    font-size: 2em;
  }
  
  textarea#input-domains {
    font-size: 0.9em;
  }
  
  button#clean-button {
    padding: 10px;
    font-size: 0.9em;
  }
  
  .app-output {
    font-size: 1em;
  }
}

@media (max-width: 320px) {
  .app-title {
    font-size: 1.5em;
  }
  
  textarea#input-domains {
    font-size: 0.8em;
  }
  
  button#clean-button {
    padding: 8px;
    font-size: 0.8em;
  }
  
  .app-output {
    font-size: 0.9em;
  }
}
