:root {
    --color-primario: #0D47A1;
    --color-secundario: #1565C0;
    --color-acento: #FF6F00;
    --color-fondo: #F4F6F9;
}


.card .workflow-timeline {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 30px 0 !important;
    background-color: rgba(0,255,0,0.05); /* Esto es solo para ver si el bloque aparece */
}


.workflow-step {
  flex: 1 1 0;
  min-width: 120px;
  text-align: center;
  position: relative;
}

.workflow-step::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: #ccc;
  z-index: 0;
}

.workflow-step:first-child::before {
  display: none;
}

.workflow-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: auto;
  line-height: 30px;
  color: white;
  font-weight: bold;
}

.step-complete {
  background: #4CAF50;
}

.step-current {
  background: #2196F3;
}

.step-pending {
  background: #BDBDBD;
}

.workflow-label {
  margin-top: 8px;
  font-size: 12px; }

/* Fondo general */
body {
    font-family: 'Roboto', sans-serif;
}


/* Navbar */
nav {
    background-color: var(--color-primario) !important;
}

/* Botones */
.btn {
    background-color: var(--color-secundario);
    border-radius: 8px;
}

.btn:hover {
    background-color: var(--color-primario);
}

/* Cards */
.card {
    border-radius: 14px;
}

/* Títulos */
h2 {
    font-weight: 300;
    color: var(--color-primario);
}



