body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    
}

.nav_container{
    width: 90%;
    height: 30px;
    padding: 15px;
    text-align: right;
    
}

a{
    margin: 0 20px;
    color: #3d7bc5;
    text-decoration: none;
    font-size: 20px;
    font-family: sans-serif;
}

a:hover{
    color: #1c4c86;
}

.main{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}

.nav{
    width: 100%;
    height: 60px;
    background-color: #141414;
}

.modal{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.411);
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
}

.modal_item{
    background-color: rgb(49, 49, 49);
    display: flex;
    margin-top: 120px;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    width: 400px;
    height: 150px;
}

.btn_modal{
    border: none;
    width: 75px;
    height: 24px;
    font-weight: 700;

}


.container{
    width: 700px;
    height: 220px;
    padding: 15px;
}

h2{
    font-size: 28px;
}
.form{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.container_input{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.input{
    height: 23px;
    padding-left: 10px;
    outline: none;
    width: 90%;
}

.btn_reset{
    background-color: #1a1a1af3;
    border: none;
    border-radius: 5px;
    color: #f0ffff;
    font-size: 15px;
    width: 12%;
    font-weight: 700;
    font-family: sans-serif;
}

.btn{
    width: 30%;
    background-color: #1a1a1af3;
    border: none;
    border-radius: 5px;
    height: 30px;
    color: #f0ffff;
    font-size: 17px;
    font-weight: 700;
    font-family: sans-serif;
}

.sentiment{
    font-weight: 700;
    margin-top: 30px;
    font-size: 18px;
    color: rgb(218, 218, 218);
    
}

#btn:hover{
    background-color: #303030;
    cursor: pointer;
}


.btn_reset:hover{
    background-color: #303030;
    cursor: pointer;
}

.fancy-file{
    display: none;
}

.fancy-file + label{
    display: flex;
    width: 100%;
    justify-content: space-between;

}

.fancy-file-name{
    width: 83%;
    border: 1px solid #979797;
}

.fancy-file-name-item{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.fancy-file-buttom{
    width: 10%;
    background-color: #1a1a1af3;
    border: none;
    border-radius: 5px;
    color: #f0ffff;
    font-size: 15px;
    font-weight: 700;
    font-family: sans-serif;
    text-align: center;
}

.fancy-file-buttom, .fancy-file-name{
    padding: 5px 10px;
}

.container_btn{
    display: flex;
    gap: 30px;
}

.btn_resultados{
    pointer-events: none;
    background-color: #686767;
}

.visual{
    display: none;
    width: 700px;
    height: 550px;

}

.chart-container{
    width: 100%;
    display: flex;
    height: 300px;
}

#barChart{
    width: 60% !important;
}

#pieChart{
    width: 40% !important;
}



