html {
    font-size: 14px;
    min-height: 100%;
    margin: 0;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex: 1;
    flex-wrap: nowrap;
    display: flex;
    margin-left: 0px;
    margin-right: 0px;
    flex-wrap: wrap;
    min-height: 85.7vh;
}
.nav-link-h {
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0D6EFD, #3098FD);
    border: solid #7CAFFF 1px;
    border-radius: 100px;
    padding: 10px;
    margin: 5px;
}

.sidebar {
    background-color: #f4f4f4;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    flex: 0 0 25%;
    max-width: 25%;
    border-right: 1px solid #dee2e6;
    justify-content: center;
}

.main-content {
    flex: 1;
    max-width: 75%;
    padding: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.footer {
    text-align: center;
    background-color: #f8f9fa;
}
.icon-footer {
    width: 24px; /* Ajuste para o tamanho desejado */
    height: 24px; /* Ajuste para o tamanho desejado */
    margin-right: 10px; /* Ajuste o espa�o entre os �cones */
}
.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;
}

/* Estilizar bot�es de dropdown */
.dropdown {
    display: grid;
    grid-template-columns: fit-content();
    place-items: center;
    padding: 6px;
    position: relative;
}

/* Bot�o de toggle do dropdown */
.dropdown-toggle {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

/* Menu do dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    top: 100%; /* Ajustar para abrir abaixo do bot�o */
    left: 0;
}

    /* Estilizar os bot�es dentro do dropdown */
    .dropdown-menu button {
        color: black;
        padding: 12px 16px;
        display: block;
        background: none;
        border: none;
        width: 100%;
        text-align: center;
    }

        .dropdown-menu button:hover {
            background-color: #f1f1f1;
        }

/* Mostrar o menu quando o dropdown est� ativo */
.dropdown.show .dropdown-menu {
    display: block;
}

/* Estilizar o bot�o accordion */
.accordion {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 5px;
    margin-bottom: 5px;
}

    /* Mudar a cor do bot�o accordion quando est� ativo */
    .accordion.active {
        background-color: #0056b3;
    }

/* Estilizar o painel escondido */
.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

    .panel form {
        margin: 10px 0;
    }


.btnd {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    place-self: center;
    text-align: center;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    align-content: center;
    text-align: center;
}

    .image-gallery div {
        flex: 0 1 260px;
        text-align: center;
        margin-bottom: 15px;
    }

    .image-gallery img {
        width: 260px;
        height: auto;
    }

.stream-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
