.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.video-box {
    max-width: 50%;
    max-height: 50%;
}

.video-box {
    width: 90vw;
    max-width: 800px;
    max-height: 90vh;
    padding: 10px;
}

.video-box video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.no-scroll {
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.blog-btn.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.img-thumbnaill {
    width: 368px;
    height: 200px;
    object-fit: cover;
    border: none; /* o ajusta según estilo */
    border-radius: 0.25rem; /* opcional, igual que Bootstrap */
}

/* Calendario citas */

/* Calendario citas */

.calendar {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    width: 100%;
}

#calendar-title {
    text-align: center;
    margin: 0 0 15px;
    font-size: 20px;
}

#calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    margin-top: 10px;
}

#calendar-days div {
    padding: 10px 0;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.day-label {
    font-weight: bold;
    color: #555;
    cursor: default;
}

.day {
    cursor: pointer;
    font-weight: bold;
}

.day.disabled {
    background: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
}

.day.available {
    background: #e4e9ff;
    color: #2f55d4;
    border: 1px solid #2f55d4;
}

.day.today {
    border: 2px solid #2f55d4;
}

.day.selected {
    background-color: #2f55d4 !important;
    color: #fff !important;
}

/* Slots */
.slots {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.slots h3,
.slots h5 {
    margin-top: 0;
    color: #2f55d4;
}

.slot {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    border: 1px solid #2f55d4;
    color: #2f55d4;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f9faff;
    transition: all 0.2s ease;
}

.slot:hover {
    background-color: #2f55d4;
    color: #fff;
}

.cursor-pointer{
    cursor: pointer;
}

/*traccar*/
.container_point {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px; /* Puedes ajustar este tamaño */
  }

  .container_point img {
    width: 100%;
    height: auto;
    display: block;
  }

  .blinking-ring {
    position: absolute;
    top: 38.5%;
    left: 59.3%;
    width: 15px;
    height: 15px;
    border: 2px solid #0064ff;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
    transform: translate(-50%, -50%);
    }

    @keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 100, 255, 0.6);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.8);
        box-shadow: 0 0 10px 10px rgba(255, 0, 0, 0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
        opacity: 0;
    }
    }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /*odoo flujo*/
              * { box-sizing: border-box; }
   
    .diagram_flow {
      position: relative;
      width: 100%;
      max-width: 800px;
      height: 100vw;
      max-height: 800px;
      margin: 20px auto;
    }

    svg.bg-ring, svg.lines {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
    }
    .step {
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: white;
      font-weight: bold;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 6px rgba(0,0,0,0.2);
      z-index: 2;
    }
    .label {
      position: absolute;
      width: 180px;
      font-size: 13px;
      text-align: left;
      background: white;
      z-index: 3;
    }
    .center-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      font-size: 30px;
      font-weight: bold;
      color: #0078d4;
    }
    @media (max-width: 600px) {
      .label {
        width: 140px;
        font-size: 12px;
      }
    }

    @media (max-width: 600px) {
  .container_test {
    visibility: hidden;
    display: none;
  }
}