.spinner-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.95); /* Black with opacity */
}
.nav_div {
    display: flex; /* Make nav_div a flex container */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    margin-top: 10px; /* Add some space above the button */
    text-align: center; /* Center align the text */
}

.nav_button {
   background-color:#007bff78;
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 35px;
    transition: background-color 0.3s, box-shadow 0.3s;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
}

.nav_button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Box shadow on hover */
}

.nav_button img.navigate_icon {
    width: 30%; /* Width of the icon */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 8px; /* Space between icon and text */
}


.spinner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.spinner-text {
  position: absolute;
  top: calc(50% + 60px);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
}
.compdata {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around; /* Aligns items along the horizontal line and distributes extra space evenly */

}
.line span {
    display: block;
    text-align: center;
    margin: 0 auto;
}
.compdata > div {
    flex: 1 1 auto; /* This allows the divs to grow and shrink as needed */
}
.group {
    background-color: #a9cbee;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 20%;
    border-radius: 10px;
    min-width: 400px;
}
.group div {
    flex: 1;
}
.title_m , .title_s, .text, .final_text, .spec_text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: center;
    justify-content: space-evenly;
}
.title_s {
    margin-top: 15px;}

.title_m p, .title_s p, .text p, .final_text p, .spec_text p {
    /* Main title styles */
    font-size: 20px;
    font-weight: bold;

}

.title_m p::before, .title_s p::before, .text p::before, .final_text p::before, .spec_text p::before {
    /* Styles for text before parentheses */
    content: attr(data-before);
    font-size: 18px;
    color: #004085;
}

.title_m p::after, .title_s p::after, .text p::after, .final_text p::after, .spec_text p::after {
    /* Styles for text after parentheses */
    content: attr(data-after);
    color: #102372;
    align-self: center;
}

.title_m span, .title_s span, .text span, .final_text span{
    /* Styles for text inside parentheses */
    font-size: 12px;
    font-style: italic;
    color: #004085;
}
.pic {
    width: 80px;
    margin: 15px;
    align-self: center;
}
.limited-power {
    color: red; /* Change the color to red */
    font-weight: bold; /* Make the text bold */
    /* Add any other styles you want */
}
/* Estilo da aba */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #c3dfea;
  border-radius: 12px; /* Add this line */
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  border-radius: 12px; /* Add this line */
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #95bfff;
  color: white;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #007bff;
  color: white;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
}
.postdata {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
