html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* Colores base */
.bg-medical {
    background-color: #004080; /* Azul médico */
}

.text-medical {
    color: #004080;
}

.btn-primary-medical {
    background-color: #004080;
    border-color: #004080;
}

    .btn-primary-medical:hover {
        background-color: #0059b3;
        border-color: #0059b3;
    }

/* Secciones */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #004080;
    margin-bottom: 1.5rem;
}

/* Chatbot */
.chatbot-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #004080;
    color: white;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

    .chatbot-btn:hover {
        background: #0059b3;
    }

.chatbot-modal {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    z-index: 1001;
}

.chatbot-header {
    background: #004080;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-body {
    padding: 15px;
}

    .chatbot-body ul {
        padding-left: 20px;
    }

    .chatbot-body li {
        margin-bottom: 10px;
        cursor: pointer;
    }
