.fuenteBlanca {
    color: white;
}

.progress {
    position: absolute;
    height: 5px;
    z-index: 100000;
    top: 0;
}

#login {
    background-image: url(../images/fondoLogin.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#login .invalid-feedback {
    color: red;
    font-weight: bold;
}

#login .card {
    background-color: unset;
    border: none;
}

#login #loginContent {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-top .logo img {
    height: 40px;
}

/* Estilos del chat */
/* .chat-box {
    width: 100%;
    height: 100%;
    position: fixed;
    background: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background: black;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.chat-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}

.chat-input {
    border-top: 1px solid #ccc;
    padding: 10px;
    display: flex;
}

.chat-input input {
    flex-grow: 1;
    border: none;
    padding: 5px;
    outline: none;
    background: white;
}

.chat-input::placeholder {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px;
    border-radius: 5px;
} */

.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-box {
    background: white;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-radius: unset;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.chat-header {
    background-color: #343a40;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    cursor: pointer;
    font-size: 18px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
}

.message {
    margin-bottom: 10px;
    display: flex;
}

.message > div {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 75%;
    font-size: 14px;
}

.message.user {
    justify-content: flex-end;
}

.message.user > div {
    background-color: #dcf8c6;
}

.message.bot {
    justify-content: flex-start;
}

.message.bot > div {
    background-color: #e0e0e0;
}

.chat-input {
    display: flex;
    border-top: 1px solid #ccc;
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 14px;
}

.chat-input button {
    padding: 12px 16px;
    background-color: #343a40;
    color: white;
    border: none;
    cursor: pointer;
    width: 80px;
    border-radius: unset;
}

main {
    padding-top: 70px;
    padding-bottom: 50px;
}

.navbar-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-bottom .navbar-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: unset;
}

.navbar-bottom .nav-item {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.navbar-bottom .nav-item.active {
    opacity: 1;
}

.navbar-bottom .nav-item.active .nav-link {
    color: black;
}

.navbar-bottom .nav-item.active .icon {
    stroke: black;
}

.navbar-bottom .nav-link {
    color: black;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-bottom .nav-link svg {
    margin-bottom: 5px;
    width: 30px;
    height: 30px;
    color: black;
}

.navbar-bottom .nav-link-title {
    display: block;
    font-size: 10px;
}
