
/* UUID Validator Tool Styles */

/* Import or reference global styles if needed */
@import url('/css/styles.css');

/* Tool-specific styles */
.validation-result {
  margin-top: 1rem;
}

.uuid-details {
  margin-top: 1rem;
  background-color: rgba(240, 240, 250, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem;
}

.detail-label {
  color: var(--muted-foreground);
}

.batch-input {
  min-height: 150px;
}

.batch-results-table {
  width: 100%;
  border-collapse: collapse;
}

.batch-results-table th,
.batch-results-table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(200, 200, 220, 0.3);
}

.invalid-uuid {
  color: var(--destructive);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
