

.dcrm-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  max-width: 1400px;
  margin: auto;
}

.dcrm-col {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 25px;
  flex: 1 1 400px;
  min-height: 300px;
  transition: all 0.3s ease;
}

h2, h3 {
  font-weight: 600;
  color: #1a1a1a;
}

button {
  background: #1d72b8;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #155d8b;
}

input, textarea, select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

.dcrm-card {
  background: #fafafa;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease;
}

.dcrm-card:hover {
  transform: translateY(-2px);
  background-color: #f0faff;
}

.dcrm-tab {
  background: #f0f0f0;
  border-radius: 6px;
  margin-right: 8px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.dcrm-tab.active {
  background: #1d72b8;
  color: white;
}

#dcrm-modal-citas {
  backdrop-filter: blur(5px);
}

@media screen and (max-width: 1000px) {
  .dcrm-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .dcrm-col {
    min-width: 100%;
  }

  button {
    width: 100%;
  }
}
