/*GENERAL*/
:root {
    /* --blue: #00aced; */
    --blue: #333;
    --blue2: #00aced;
    --white: #fff;
    --gray: #f5f5f5;
    --black1: #222;
    --black2: #999;
  }
a{
    text-decoration: none;
    color: #696969;
}

.my{
    margin-top: 2em;
    margin-bottom: 1em;
}
.upper{
    text-transform: uppercase;
}
/*  */
/* Navbar Sticky */
.navbar {
    box-shadow: 0 4px 2px -2px gray;
}

/* Para que se quede fijo arriba cuando haces scroll */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Mejora en la apariencia del logo */
.navbar-brand img {
    max-height: 70px; /* Ajustar según el tamaño deseado */
}

/* Para alinear el menú a la derecha */
.navbar-nav {
    margin-left: auto;
}

/* Espaciado entre enlaces */
.nav-link {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fondo blanco para la barra */
.navbar-light {
    background-color: #efefef;
}
.navbar-dark {
    background-color: #333 !important;
}

.nav-active{
    color: #0b91c1;
}

/* Para que los dropdowns se vean bien */
.dropdown-menu {
    background-color: white;
}

/* -----footer------ */
.footer-background {
    background-image: url('../img/bg/bg.jpg'); /* Usa la ruta relativa a la carpeta pública */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Ajusta el color del texto según sea necesario */
}

/* ------------- */

/* form upload image */
form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    width: 300px;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}
input[type="text"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type="file"] {
    display: none;
}
.file-upload {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.file-upload:hover {
    background-color: #45a049;
}
button {
    width: 100%;
    padding: 0.75rem;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #007B9A;
}
#file-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}
/* end form upload image */