html{
  margin: 0;
  padding: 0;
}

body{
  width: 100%;
  height: 100%;
  background-image: url("/images/background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;

  user-select: none;
  letter-spacing: 0.2px;
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif !important;

}


h1 {
  font-size: 25px;
  color: #33404D;
  justify-content: center;

}

.h2Container{
  padding: 50px 0;
  margin-left: 10px;
  justify-content: center;
}

.h2Container h3 {
  text-align: center;

}

h2{
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 22px;
  color: #33404D;

}

h3 {
  font-size: 17px;
  font-weight: 600;

  color: #33404D;
}

h4 {
  font-size: 14px;
  font-weight: 600;

  color: #33404D;
}

button {
  padding: 10px;
  background-color: white;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 25px;


}

p{
  color: #33404D;


}


#containerBody{
  justify-content: center;
  align-items: center;
  padding: 0;
  backdrop-filter: blur(70px);
  margin: 0;
  width: 90%;
  padding: 3.5%;
  background-color: rgba(245, 245, 247, 0);

}

.sidebarBody-container{
  display: flex;

}

/*SIDEBAR */
.sidebar {
  width: 6%; /* Adjust the width as needed */
  background-color: rgba(248, 250, 252, 0.2);
  height: 100vh; /* Adjust the height as needed */
  padding: 0;
  justify-content: center;
  position: sticky;
  top: 0;
  border-right: 2px solid whitesmoke;
  display: flex;
  text-align: center;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
  justify-content: center;
}

.sidebar ul li {
  margin-bottom: 10px;
  justify-content: center;

}

.sidebar ul li a {
  text-decoration: none;
  color: black;
  font-size: 12px;

  font-weight: 500;

}

.sidebar img{
  height: 20px;
}

.sidebar-box{
  margin-bottom: 35px;
  padding: 10px 30px;
}

.sidebar-box:hover{
  background-color: rgba(0, 0, 0, 0.1);

}


.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);

}
.popup p{


}

.popup-content {
  background-color: #fefefe;
  margin: 20% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 15px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.infoRed {
  color: red;
}

.infoGreen {
  color: green;
}

.infoYellow {
  color: #CA6D16;
}

.infoGrey {
  color: #3E4A56;
  font-size: 14px;
}

/* HEADER*/

header{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1% 5% 1% 1%;
  background-color: black;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: visible;
  z-index: 9999;

}
header a{
  margin-right: auto;

}

.logo{
  height: 35px;
  cursor: pointer;
}

.nav_links{
  list-style: none;
}

.nav_links li{
  display: inline-block;
}

.nav_links li a{
  transition: all 0.3 ease 0s;

  text-decoration: none;
  color: white;
  padding: 20px;
  font-size: 14px;
}

.nav_links li a:hover{
  transition: all 0.3 ease 0s;
  color: #78B5F7;
}

#request-visualizer{
  background-color: #327DF7;
  margin-right: 20px;
  padding: 10px;
  border-radius: 5px;
  color: white;

  font-size: 14px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* PROFILE BUTTON*/
#dropdown-button{
  padding: 10px !important;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(248, 250, 252, 0.5);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  justify-content: center;
  padding: 15px;
  right: 0;
  border: 2px solid whitesmoke;
  border-radius: 15px;

}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  text-decoration: none;
}





/* FOOTER*/

footer{
  width:100%;
  background-color: black;
  justify-content: center;
  margin: 0;
}

#footer-div{
  background-color: black;
  padding: 10%;
}

footer p{
  color: whitesmoke;


}

/* ERROR POPUP */

.error-popup {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);

}

.closeError {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.error-popup-content {
  background-color: #fefefe;
  margin: 20% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 15px;
}

.closeError:hover,
.closeError:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

/* GENERAL TAB BUTTONS*/

.tabs-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
}


.s-tab-button, 
.f-tab-button, 
.p-tab-button {
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid whitesmoke;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: grey;
  margin: 0 10px;

}

.s-tab-button:hover, 
.f-tab-button:hover, 
.p-tab-button:hover {
  background-color: white;
  color: #33404D;

}

.s-tab-button.active, 
.f-tab-button.active, 
.p-tab-button.active {
  background-color: white;
  color: #33404D

}

.s-tab-content, 
.f-tab-content, 
.p-tab-content{
  width: auto;
  height: auto;
  display: none;
  border: 1px solid whitesmoke;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5% ;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.1), inset -5px -5px 5px rgba(255, 255, 255, 0.1);

}

.s-tab-content:first-child .f-tab-content:first-child .p-tab-content:first-child {
  display: block;
}

/* TEXT DESCRIPTION*/

.textDescription{
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2%;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid whitesmoke;
  font-weight: 500;
  color: #3E4A56;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.1), inset -5px -5px 5px rgba(255, 255, 255, 0.1);
}

/*  STATEMENTS */

table {
  margin-top: 50px;
  border-collapse: collapse;
  width: 100%;

}

th, td {
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 4px 8px;
  text-align: center;
  background-color: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  width: 14.28%; /* Add this line for uniform width */
  max-width: 150px; /* Add this line for uniform width */



}

td {
  font-size: 12px;

}

th {
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 600;
  font-size: 14px;
}


/* GOOGLE BTN*/

.google-btn {
  background-color: white;
  border-radius: 25px;
  color: #616161;
  font-weight: 500;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center; /* Change this line */
  cursor: pointer;
  width: 100%;
}

.google-btn img {
  vertical-align: middle;
}

.google-btn span {
  vertical-align: middle;
  display: inline-block;
}


.google-btn:hover {
  /* Add hover styles if needed */
}




@import url("cabecera.css");
@import url("4-boxes.css");
@import url("3-boxes.css");
@import url("2-boxes.css");
@import url("summary.css");
@import url("balanceSheet.css");
@import url("DFCF.css");
@import url("searchPopup.css");
@import url("scores.css");





