
.tools{
  background-color: #ffffff;
}

.tools p {
  margin-top: 10px;
}

.tools-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tools-cards .card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
}

.tools-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .tools-wrapper  {
    grid-template-columns: 1fr;
  }
}

.card-inner {
  display: flex;
  justify-content: space-between; /* separa desc y botón */
  align-items: center;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  
    padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  
}

.desc {
  flex: 1; /* ocupa todo el espacio disponible */
  margin-right: 20px;
}

.desc h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.desc p {
  margin: 5px 0 0;
  color: #555;
  font-size: 0.8rem;
}
.btn-container {
  text-align: right;
  margin-top: 10px;
}


.tool_input {
  display: flex;
  flex-direction: column; /* Cambiado a columna */
  padding-bottom: 2em;
  align-items: flex-start; /* Alinea a la izquierda */
  margin-top: 1rem;
}


.tool_input label {
  margin-bottom: 0.5em;
  font-weight: bold;
}

select,
input {
  width: 100%;
  min-height: 30px;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 5px;
  margin-bottom: 1em;
  box-sizing: border-box;
  text-align:left;
  color: #333;
}

input.cron_expression {
  width: 100%;
  min-height: 100px;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 5px;
  margin-bottom: 1em;
  box-sizing: border-box;
  font-size:2.5rem;
  text-align:center;
  color: #333;
}
	
.tool_input div{
	width: 100%;
}	
.tool_input textarea {
  width: 100%;
  min-height: 100px;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 5px;
  margin-bottom: 1em;
  box-sizing: border-box;
  resize: vertical; /* Permite redimensionar verticalmente */
}

.tool_input button {
  align-self: flex-start; /* Opcional: Alinea el botón a la izquierda */
}

#tool_result {
    display: none;
}
  


  pre {
  background-color: #2d2d2d;  
  color: #f8f8f2;            
  overflow-x: auto;
  white-space: pre;
  padding: 1em;
  border: 1px solid #444;
  font-family: monospace;
  max-width: 100%;
  border-radius: 8px;
  }
 
.label-copy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

#copyBtn {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
  font-size: 1.2em;
  transition: transform 0.2s;
}

#copyBtn:hover {
  transform: scale(1.2);
}