html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Add shadow to h1 text */


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Use viewport height instead of percentage */
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto; /* Allows wrapper to grow and push the footer */
    min-height: 100vh;
}

.content {
    flex: 1 0 auto; /* This ensures content pushes the footer down */
}

.footer {
    flex-shrink: 0;
    background-color: #f8f9fa;
    padding: 1rem;
    width: 100%;
    position: static; /* Ensures it stays in normal flow */
    z-index: 1;
}

.bootstrap-select .dropdown-toggle,
.bootstrap-select .dropdown-menu {
    background-color: white !important;
}

.card-body {
    background-color: #eaeaea;
}

.card-header {
    background-color: white;
    border:0;
}

.card-footer {
    background-color: white;
    border:0;
}

.hydrozone-sprout {
    background-image: url('/images/mwelo-green-sprouts.jpg');
    background-size: cover;
    color: #fff;
    letter-spacing: 1px;
}

.menu-dots {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

    .menu-dots::before {
        content: '\2022 \2022 \2022'; /* Three dots */
        font-size: 1.5em;
    }

.menu-options {
    display: none;

    background-color: white;
    border: 1px solid #ddd;
    z-index: 1000;
    margin-bottom: 20px;
}

    .menu-options a {
        display: block;
        padding: 10px;
        color: black;
        text-decoration: none;
    }

        .menu-options a:hover {
            background-color: #f8f9fa;
        }

.menu-dots:hover .menu-options {
    display: block;
}



.sombra {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 1); 
}

.dashed-border {
    border: 2px dashed #73B21A;
}

.greenydark {
    background-color: #73B21A;
    color:#ffffff;
}

.greeny-bg {
   background-color:#fcfff6;
}

.graysh-bg {
    background-color: #f1f1f1;
}

.roundy {
    border-radius: 10px;
}

.btn-custom {
    border: none;
    box-shadow: none;
}


.checkbox {
    accent-color: blue;
    margin-top: 0.3rem;
    width: 1.5rem;
    height: 1.5rem;
}

.nav-link.active {
    background-color: #eaeaea; /* gris clarito */
    color: #00bb21 !important; /* verde fuerte-oscuro */
    font-weight: bold;
}

input[type="text"], input[type="number"], select {
    border-radius: 10px; /* Adjust the value to your desired roundness */
    padding: 3px;
    border: solid 1px #333;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0, 0 0 0 0.1em lightgrey;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none;
}

.bup {
    width: 3em;
    height: 3em;
}

.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

#token {
    display: none;
}

#tokenValue {
    word-wrap: break-word;
}

.index-banner {
    mask-image: url('/images/main_bg_mask.svg');
    background-image: url('/images/mwelo_main_bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover; /* Scale the image to cover the entire div */
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
}

.project-banner {
    background-image: url('/images/mwelo_banner_fondo.png');
    background-repeat: repeat-x;
    background-size: auto;
    border-radius: 10px;
}

.centrado {
    display: table;
    height: 100%; /* Full viewport height for demonstration */
    width: 100%; /* Full width for demonstration */
}

.centradito {
    display: table-cell;
    vertical-align: middle;
}



.about-top-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
    min-height: 100%;
}

.about-top-container img {
        width: 50%;
        border-radius: 0.5rem;
}

.about-overlay {
    position: relative;
    margin-top: -23%;
    left: 25%;
    background: white;
    padding: 20px;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 70%;
}

.about-vision, .about-mission {
    margin-top: 20px;
    padding: 20px;
    border-radius: 0.5rem;
}

.about-vision {
    background-color: #4CAF4C;
    color: white;
}

.about-mission {
    background-color: #fafafa;
}
