/*#region GENERAL STUFF*/
:root{
    --primary: #161515;
    --secondary: #64b5f6;
    --accent: White;
}

p {
    font-family:Georgia;
    font-size:15px;
    color: var(--primary);
    line-height:22px;    
}


body{
    display: flex;
    flex-direction: column;
    background-color:  var(--accent);
    font-family: 'Georgia','Open Sans',sans-serif;
    font-size: 13px;
    color: var(--primary);
    min-height: 100vh;
}

.contentText {
    margin-top: 22px;
}

.colorResearch {
    color: #64b5f6;
}

.bg-custom-primary{
    background-color: var(--primary);
}

.bg-customm-secondary{
    background-color: var(--secondary);
}

.custom-center{
    max-width: 1200px;
    margin: 0 auto;
}

h1{
    margin: 0;
}

.my-form{
    padding-bottom: 1rem;
    padding-top: 1rem;
}


.my-form .form-group{
    padding-bottom: 1rem;
}

.label-proposal-form{
    font-family:'Lato';
    font-size: 17px;
    opacity: 0.7;

}

/*#endregion*/

/*#region TOP BAR*/
.top-wrapper{
    min-width: 100%;
}


.top-header{
    padding-top: 8px;
    color: var(--accent);
    display: flex;
    justify-content: space-between;

}

.brand-hidder{
    display:none;
    font-size: calc(1.375rem + 1.5vw);
}






.header-subtitle{
    font-size: "Open Sans", helvetica, "helvetica neue", arial, sans-serif;
    font-size:16px;
    font-weight: 400;
}

.top-header h2 a {
    font-size: 32px;
    font-weight: 700;
    color: inherit;           /* Inherits the color from the h2 */
    text-decoration: none;    /* Removes underline */
    transition: color 0.3s ease;
}


.top-header h2 a:hover {
    color : var(--accent);
}

.ia-logo{
    max-width: 90px;
}


/*#endregion*/


/*#region TOP NAV BAR */


.navbar-toggler {  
    margin: 0.5rem;
    z-index: 1050;
}

.navigation-wrapper{
    background-color: var(--secondary);
    color:var(--primary)
}

#site-navigation {
    min-height: 56px;
}

.site-branding {
    max-height: 90px;
}

.site-branding .img-fluid{
    max-height: 90%;
}



.nav-link{
    font-family:'Lato';
    font-size:  18px;
    font-weight: bold;
    padding-left: 0px !important;
    color:black;

}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent) !important;
}


.entry-title-hidden-nav{
    font-family:'Lato';
    font-size:1rem;
    line-height:26px;
    font-weight: bold;
    padding-left: 0px !important;
}

.card {
    width: 45%;
}


/*#endregion*/



/*#region MAIN CONTENT */

.site-content{
    flex: 1;
}

.card-content{
    flex:1;
}

.entry-title{
    display:block;
    color: var(--primary);
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family:'Lato';
    font-size:40px;
    line-height:26px;
    font-weight: bold;
    padding-bottom: 1rem;
}



.align-left {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.form-control{
    font-size:15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.team-container li{
    margin: 1rem; 
    font-size: 1rem;
}


.status-badge-accepted{
    background-color: #28a745 ; /* Verde escuro para melhor contraste */
    color: white;
    padding: 3px 6px;
    border-radius: .25rem;
    font-weight: bold;
}

.status-badge-pending {
    background-color: #ffc107; /* Amarelo/Laranja */
    color: #343a40; /* Texto escuro */
    padding: 3px 6px;
    border-radius: .25rem;
    font-weight: bold;
}

.status-badge-rejected {
    background-color: #dc3545; /* Vermelho */
    color: white;
    padding: 3px 6px;
    border-radius: .25rem;
    font-weight: bold;
}

/* Opcional: Centralizar o conteúdo da célula */
#myTable td:nth-child(5) { 
    text-align: center; 
}



/*#endregion*/


/*#region Footer */

.footer-container{
	background-color:var(--primary);	
    color: var(--accent);
    min-height: 10vh;
    margin-top : 3rem;

} 


.footer-logos{
    width: 100%;
}



.footer-container .d-flex {
    flex-wrap: wrap;
    row-gap: 0;
    column-gap:1rem;
}

.toast-area{
    position: fixed;
    right: 0;
    z-index: 1;
}

table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td{
 vertical-align: middle;
}

table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td > form{
 text-align: center;
}

.lato{
    font-family: Lato;
}



/*#endregion*/


/*#region MediaQueries */

/* Big Screen (desktop) */
@media (min-width: 991px) {
    .responsive-box{
        height: 80px;
    }
}


@media (max-width: 1160px) {
    .entry-title{
       line-height: normal;
    }
}
/* Medium Screen (tablet) */
@media (min-width: 768px) and (max-width: 991px) {
    .responsive-box {
        height: 60px;
    }
}

@media (max-width: 991px) {
    .custom-center {
        min-width: 100%;
        margin:auto;
    }

    .brand-hidder{
        display:block;
    }

    .entry-title{
        display:none;
        margin: auto;

    }

    .nav-link{
        text-align: center;
        font-size: 0.8rem;
    }
    .card{
        width:100%;
    }
}

@media (max-width: 600px){
    .make-it-big{
        width: 100%;
    }
    .top-image{
        max-width: 45%;
    }
}
/*#endregion*/
