.login-body {
    font-family: Arial, sans-serif;
    background-color: #333333;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

/* Título */
.logo {
    font-size: 2.5em;
    color: #ff8000;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo span {
    color: white;
}

.italic {
    font-style: italic;
}

/* Botón de ingresar */
.ingresar-button {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    color: white;
    background-color: #ff8000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.ingresar-button:hover {
    background-color: #ff9933;
}

/* Botón de registrar ingreso */
.registrar-button {
    width: 40%;
    padding: 15px;
    font-size: 1.2em;
    color: white;
    background-color: #ff8000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.registrar-button:hover {
    background-color: #ff9933;
}

/* Botones de panel principal */
.panel-button {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: white;
    background-color: #ff8000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.panel-button:hover {
    background-color: #ff9933;
}

/* Botón de agendas */
.agendas-button {
    width: 40%;
    padding: 15px;
    font-size: 1.2em;
    color: white;
    background-color: #ff8000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.agendas-button:hover {
    background-color: #ff9933;
}

.boton-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.boton-volver {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.borde-redondeado {
    border-radius: 15px;
}

/* Botón de camra ingreso */
.camera-button {
    width: 21%;
    padding: 5px;
    font-size: 1.2em;
    color: white;
    background-color: #ff8000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-toast {
    min-width: 300px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
    color: white;
    font-weight: bold;
    margin: 1rem 0;
}
.toast-success { background-color: #28a745; }
.toast-warning { background-color: #ffc107; color: black; }
.toast-danger  { background-color: #dc3545; }

.toast-custom-position {
    top: 30%;
}

.image-wrapper {
  display: inline-block;     /* se ajusta al tamaño real de la imagen */
  position: relative;
  max-width: 100%;
}

#imagenModal.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.marca-agua {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: clamp(60px, 14%, 140px); /* ← escala por % con límites min/max */
  opacity: 0.5;
  pointer-events: none;
}




