* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
input,
table,
tr,
td,
span,
pre,
label {
  font-family: "Inter", sans-serif;
}

.bg-account {
  background-image: url('../images/account-bg.svg');
  height: 100vh;
}
.padding-custom-home{
  padding-top: 15%;
}

.home-right-side-img img {
  width: 100%;
}
.hvh-100 {
  height: 100vh;
}

.bg-account {
  background-image: url('../images/account-bg.png');
  background-size: cover;
  background-position: center;
  /* border-bottom-right-radius: 80px; */
  position: relative;
}

.home-icon.explore-icon a {
  text-decoration: none;
}

.explore-section .heading {
  text-align: center;
  margin-bottom: 30px;
}

.explore-section .heading h1 {
  font-size: 48px;
  font-weight: bold;
}

.explore-section .heading .first-heading {
  color: #4CAF4F;
}

.explore-section .heading .second-heading {
  color: #2D2D2D;
}

.explore-section .description {
  font-size: 20px;
  color: #717171;
  margin: 0 auto;  /* Center the element horizontally */
  text-align: center;
  width: 60%;  /* Adjust the width as needed */
}

.explore-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.explore-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.explore-item .member-img img, 
.explore-item .universities-img img,
.explore-item .searches-img img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.explore-item .member-heading,
.explore-item .universities-heading,
.explore-item .searches-heading {
  text-align: left;
}

.explore-item h4 {
  font-size: 24px;
  font-weight: bold;
  color: #4D4D4D;
  margin-bottom: 5px;
}

.explore-item h5 {
  font-size: 16px;
  color: #717171;
}


.bg-account::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('../images/curve.png');
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  width: 130px;
  height: 50%;
  z-index: 9;
}

.bg-account::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url('../images/curve.png');
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  width: 130px;
  height: 50%;
  z-index: 9;
}

.bg-green {
  background-image: url('../images/account-green.png');
  background-size: cover;
  background-position: center;
}






ul.nav-menu {
  display: flex;
  gap: 20px; /* Adjust the gap between menu items */
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

ul.nav-menu li {
  margin: 0;
}

ul.nav-menu li a {
  color: black;
  text-decoration: none;
  font-size: 18px; /* Adjust the font size */
}

header.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: absolute;
  width: 100%;
  top: 30px;
  z-index: 999;
}

.blur-bg {
  background-color: rgba(255, 255, 255, 50%);
  padding: 10px 50px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 8px #8c8c8c1c;
}

a.header-btn {
  background-color: #4CAF4F;
  color: white !important;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
}
a.header-btn:hover {
  background-color: #367e35;
}
.login-box {
  width: 546px;
  margin: 0 auto;
  box-shadow: 0 0 20px 8px #4caf4f42;
  display: flex;
  border-radius: 30px;
  justify-content: center;
  padding: 30px 50px;
  flex-flow: column;
  margin-top: 100px;
}

.login-box h1 {
  font-size: 47px;
  font-weight: 700;
  color: #4CAF4F;
  text-align: center;
}

.field-icon {
  float: right;
  right: 10px;
  margin-top: -25px;
  position: relative;
  z-index: 2;
  
}


.login-box p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 25%);
}

.login-box label {
  font-size: 18px;
  font-weight: 600;
  color: black;

}

.login-box .border_bottom {
  border: none;
  border-bottom: 1px solid #4CAF4F;
  border-radius: 0;
  padding: 10px 0;

}


.login-btn {
  width: 100%;
  background-color: #4CAF4F;
  padding: 12px;
  border: none;
  font-size: 20px;
  font-weight: 600;
}


.login-btn:hover {
  background-color: #1DACE3;
}


.remenber-me {
  font-size: 12px;
  font-weight: 600;
}

a.forgot-password {
  color: #FF0000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.social-icon ul {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-size: 24px;
  margin-top: 30px;
}

.social-icon ul i {
  color: rgba(0, 0, 0, 25%)
}

.social-icon ul i:hover {
  color: #4CAF4F;
}

.form-check-input:checked {
  background-color: #4CAF4F;
  border-color: #4CAF4F;
}

.form-check-input:focus {
  border-color: #4CAF4F;
  outline: 0;
  box-shadow: #4CAF4F;
}

button.google-button {
  padding-top: 7px !important;
  padding-bottom: 44px !important;
}

.google-button {
  height: 40px;
  border-width: 0;
  background: white;
  color: #737373;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.05);
  transition-property: background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  padding: 0;

  &:focus,
  &:hover {
    box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
  }

  &:active {
    background-color: #e5e5e5;
    box-shadow: none;
    transition-duration: 10ms;
  }
}

.google-button__icon {
  display: inline-block;

  width: 18px;
  height: 18px;
  box-sizing: border-box;
}

.google-button__icon--plus {
  width: 27px;
}

.google-button__text {
  display: inline-block;

  padding: 0 24px;
  font-size: 14px;
  font-weight: bold;

}

button.google-button {
  width: 100%;
  background-color: #1DACE3;
  color: white;
  margin-top: 15px;
  border: none;
  font-size: 22px;
  font-weight: 600;
}


button.google-button:hover {
  width: 100%;
  background-color: #4CAF4F;
}

.account-creation {
  font-size: 15px;
  text-align: center;
  margin-top: 20px;
}

.account-creation a {
  color: #4CAF4F;
  text-decoration: none;
}

footer.footer {
  background-color: #2D2D2D;
  padding: 10px 0;
}

footer.footer ul {
  display: flex;
  justify-content: center;
  gap: 70px;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer.footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}
.align-items-center {
  align-items: center !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.mt-auto {
  margin-top: auto !important;
}

.nav-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 20px;
}



.nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 99;
}

.nav.visible {
  transform: translateX(0);
}

.nav-black {
  background-color: rgb(34, 31, 31);
  width: 100%;
  transition-delay: 0.4s;
}

.nav-black.visible {
  transition-delay: 0s;
}

.nav-red {
  background-color: #4CAF4F;
  width: 95%;
  transition-delay: 0.2s;
}

.nav-red.visible {
  transition-delay: 0.2s;
}

.nav-white {
  background-color: #fff;
  width: 95%;
  padding: 80px 40px;
  position: relative;
  transition-delay: 0s;
}

.nav-white.visible {
  transition-delay: 0.4s;
}


.list {
  list-style-type: none;
  padding: 0;
}

.list li {
  margin: 30px 0;
}

.list li a {
  color: rgb(34, 31, 31);
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.list li a:hover {
  font-weight: 900;
}

.list ul {
  list-style-type: none;
  padding-left: 20px;
}

.close-btn {
  display: none;
}

button.nav-btn.open-btn {
  display: none;
}

.nav-btn i {
  font-size: 24px;
}

.form-control {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  color: #333;
  background-color: #ffffff;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #4CAF4F;
  box-shadow: 0 0 5px rgba(76, 175, 79, 0.5);
  outline: none;
  background-color: #fff;
}


/* //home style */
.home-section .home-right-side-img img {
  width: 100%;
}

.heading h1 {
  color: #2D2D2D;
  font-size: 48px;
}
.row.mt-5 {
  margin-top: 80px; /* Increased margin-top for more space */
}
.home-section .home-left-side .heading h1 {
  font-size: 65px;
  font-weight: bold;
}

.home-left-side .heading h1.first-heading {
  color: #4CAF4F;
}

.search-filter {
  padding: 15px;
  box-shadow: 0px 0px 25px #0000002e;
  border-radius: 12px;
  background-color: #fff;
}

.search-filter .input-group-text {
  background-color: white;
  border: none;
}



.search-filter input#inlineFormInputGroupUsername {
  border: none;
}

.search-filter {
  margin-top: 35px;
}


.search-filter select#inlineFormSelectPref {
  background-color: #4caf4f;
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  min-width: 170px;
}

.search-filter button.btn.btn-primary {
  background-color: #2D2D2D;
  border: none;
  padding: 12px 30px;
}

.home-left-side .home-icon {
  margin: 50px 0;
}


.row.mt-5:last-child {
  margin-bottom: 80px; /* Added margin-bottom for space above the footer */
}
.text-center i {
  font-size: 2.8rem; /* Reduced font size for icons */
  color: #4CAF4F;
  margin-bottom: 15px;
  margin-top: 5px;

}
.text-center h3 {
  color: #2D2D2D;
  font-size: 22px;
  font-weight: 600;
}

.text-center p {
  color: #717171;
  font-size: 16px;
  margin: 0 20px;
}

.members .member-heading {
  padding-left: 15px;
}

.universities .universities-heading {
  padding-left: 15px;
}


/* .searches .searches-img img {
  width: 85px;
} */



.searches .searches-heading {
  padding-left: 15px;
}

.searches .searches-heading {
  padding-left: 15px;
}



.home-left-side .home-icon .members {
  display: flex;
  align-items: center;
}

.home-left-side .home-icon .universities {
  display: flex;
  align-items: center;
}

.home-left-side .home-icon .searches {
  display: flex;
  align-items: center;
}




.member-heading h4 {
  /* line-height: 19px; */
  font-size: 26px;
  font-weight: bold;
  color: #4D4D4D;
}

.member-heading h5 {
  /* line-height: 18px; */
  color: #717171;
  font-size: 14px;
}


.universities-heading h4 {
  /* line-height: 19px; */
  font-size: 26px;
  font-weight: bold;
  color: #4D4D4D;
}

.universities-heading h5 {
  /* line-height: 18px; */
  color: #717171;
  font-size: 14px;
}


.searches-heading h4 {
  /* line-height: 19px; */
  font-size: 26px;
  font-weight: bold;
  color: #4D4D4D;
}

.searches-heading h5 {
  line-height: 26px;
  color: #717171;
  font-size: 14px;
}

.universities {
  margin-top: 40px;
}

.full-screen-home {
  height: calc(100vh - 66px);
  display: flex;
  align-items: center;
}

.full-screen-home .home-section,
.full-screen-home .home-section>.row {
  height: 100vh;
  align-items: center;
  display: flex;
}

.full-screen-home .home-section>.row .home-right-side-img {
  height: 100vh;
  align-items: end;
  display: flex;
  margin-top: -66px;
}

.form-select:focus {
  border-color: #4CAF4F;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #4CAF4F;
}

.account-fit-screen {
  height: calc(100vh - 66px);
}



/* explore page */
.heading p {
  font-size: 24px;
  width: 60%;
}

.align_base .searches {
  align-items: unset !important;
}

.margin-img img{
  margin-top: 160px;
}

/* search page */
.padding-custom-serach {
  padding-top: 10%;
}
.sidebar li {
  margin-bottom: 30px;
}

.sidebar {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('../images/sidbar.jpg');
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  height: 100%;

}

/* Apply the full height to the column containing the sidebar */
.bg-liner-serach-sidebar {
  min-height: 100vh;
}

/* Ensure the main content area also stretches to fill the viewport height */
.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sidebar.close{
  width: 78px;
}
.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details i{
  font-size: 30px;
  color: #11101d;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
  width: 100%;
}

.sidebar .nav-links > li.active:before,
.sidebar .nav-links > li:before{
  position:absolute;
  left:0;
  top:0;
  content:'';
  width:10px;
  height:100%;
  background:white;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  border-bottom-right-radius:5px;
  border-top-right-radius:5px;
}
.sidebar .nav-links li.active:before
{
  opacity: 1;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .iocn-link {
  background-color: rgba(255, 255, 255, 25%);
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  padding: 8px 15px;
  max-width: 100%;
  margin-left: 25px;
}
.sidebar .iocn-link i.bx {
  display: none;
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .nav-links li.active i,
.sidebar .nav-links li:hover i{
  color: #4CAF4F;  
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 16px;
  font-weight: 400;
  color: white;
  transition: all 0.4s ease;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;


}
span.link_name.alerting {
  padding: 15px;
  width: 100%;
  background-color: rgba(255, 255, 255, 25%);
  margin-left: 25px;
}
.sidebar .nav-links li.active a .link_name{

  color: #4CAF4F;
  font-weight: 600;
  width: 100%;
  margin-left: 25px;
  background-color: white;
  padding: 15px 15px;
}


.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 80px;
  margin-top: -10px;

  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
  padding: 0;
  padding-left: 30px;
  margin-top: 10px;
  
}


.sidebar .nav-links li .sub-menu a {
  color: white;
  font-size: 15px;
  white-space: normal; /* Allows line breaks */
  word-wrap: break-word; /* Breaks long words */
  margin-left: 25px;
  transition: all 0.3s ease;
}

.sidebar .nav-links li .sub-menu a:hover,
.sidebar .nav-links li .sub-menu a.active,
.sidebar .nav-links li a.active {
  opacity: 1;
  color: #295f28;
}

.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}
.sidebar .profile-details .job{
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  opacity:.5;
  white-space: nowrap;
}
.sidebar .profile-details i.bx{  
    min-width: 50px;
}

.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 12px;
}


.padding-custom-150{
  padding-top: 150px;
  padding-left: 50px;
  padding-right: 50px;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}


span.filter-close-btn {
  font-size: 18px;
  font-weight: 600;
  background-color: white;
 margin-right:20px;
  box-shadow: 0px 0px 1px #9F9A9A;
  padding: 8px;
  cursor:pointer;
  font-family: "Montserrat", sans-serif;
}

span.filter-close-btn i{
  margin-left:10px
  
}

a.filter-by-btn {
  text-decoration: none;
  color: white;
  background-color: #449d47;
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

a.filter-by-btn i{
  margin-left:10px;
  font-size:12px;

  
}

.apply-btn{
  text-decoration: none;
  color: white;
  background-color: #2D2D2D;
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
}

.apply-btn:hover{
  color: white;
}

.filters a{
  margin-right: 20px;
}

.search-card h3{
  font-size: 22px;
  color: #449d47;
  font-weight: 700;
  text-transform: capitalize;
}

.search-card h4{
font-weight: 400;
color: #4E3F68;
font-size: 20px;
margin-top: 15px;
}

.search-card p{
  font-weight: 400;
  color: #7B7B7B;
  font-size: 18px;
  margin-top: 10px;
  line-height: 32px;
  text-transform: capitalize;
  }

  .search-card-details span.save {
    font-size: 20px;
    font-weight: 400;

}

.search-card-details span.save a{
        color: black;
    text-decoration:none;
}
.search-card-details span.unsave a {
  color: rgb(158, 7, 7);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
}

.search-card-details span{
    margin-right:20px;
}



.search-card-details span.releated-articles  a{
  color: black;
  font-weight: 400;
    font-size:20px;
}

.search-card-details span.read-full-paper a {
  color: #4CAF4F;
  font-size: 20px;
  font-weight: 400;
}

.search-card-details span.versions a{
    color:#4CAF4F;
    font-size:20px;
    font-weight:400px;
}

.search-card {
  border-bottom: 2px solid #4CAF4F;
  padding: 40px 0;
}

.search-card-details a {
    text-decoration: none;
}
.card-link {
  text-decoration-color: #4CAF4F;
  

}




.total-result-bar {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.total-result-bar a {
  font-size: 18px;
  font-weight: 600;
  color: black;
  text-decoration: none;
}

.total-result-bar a i{
  margin-left:10px;
}

span.total-result {
  color: black;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0px 0px 4px #000000;
  padding: 10px;
  border-radius: 5px;
}

.search-insight {
  background-color: #4CAF4F;
  padding: 20px;
  border-radius: 10px;
  color: white;
  margin-top: 40px;
  margin-bottom: 20px;

}

.search-insight h3{
  font-weight: 700;
  font-size: 28px;

}

.search-insight p{
  font-weight: 400;
  font-size: 18px;
  
}

a.Summarize-btn {
  background-color: #2D2D2D;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 15px;
  margin-top: 20px;
}

a.Summarize-btn:hover {
  background-color: #449d47;
}


/* My Library */
.sidebar.library .nav-links li a .link_name {
  color: white;
  font-weight: 600;
  width: 100%;
  margin-left: 25px;
  background-color: rgba(255, 255, 255, 25%);
  padding: 15px 15px;
}


.sidebar.library .nav-links li.active a .link_name {
background-color: white;
color: #4CAF4F;
}

.saved-articles {
  font-size: 42px;
  font-weight: 600;
  margin-top: 35px;
  color: #4CAF4F;
}

.last-card-result{
  border: none;
  margin-bottom: 50px;
}


/* Alert Stylein */
.modal-dialog.modal-dialog-centered {
 
  max-width: 684px;
}

.modal-content {
  background-color: #d7d7d7;
}
.btn-close {
  background-image: url(../images/model-close.png);
  width: 20px;
  height: 20px;
  background-size: contain;
  opacity: 1;
}

.modal-body.alert-body {
  text-align: center;
  padding: 40px 80px;
}

.modal-body.alert-body img{
  width:178px;
  margin-bottom:30px;
}

.modal-body.alert-body h3{
  color:#027243;
  font-size:48px;
  font-weight:700;
  margin-bottom:20px;
}

.modal-body.alert-body p{
  font-weight:500;
  font-size:24px;
  line-height:35px;
}

.newsletter {
  width: 100%;
  justify-content: center;
  display: flex;
  margin-bottom: 30px;
}

form.newsletter div {
  background-color: white;
  width: 420px;
  border-radius: 10px;
  border: none;
outline: none;
}

form.newsletter input {
  border: none;
  width: 75%;
  padding: 12px 30px;
  border-radius: 10px 0 0 10px;
  outline: none;
}
form.newsletter input::placeholder{
  color:#2D2D2D;
}
form.newsletter button{
  width:25%;
  font-size:18px;
  background-color:#4CAF4F;
  font-weight:600;
  border-color:#4CAF4F;
}
form.newsletter button:hover{
     background-color:black;
}

button.btn-alert {
  font-size:18px;
  background-color:#449d47;
  color:white;
  border:none;
  padding:15px 40px;
  font-weight:700;
  border-radius:15px
  
}

button.btn-alert:hover {
  background-color: black; /* Change background color on hover */
}
.modal-header{
  border: none;
}


.about-us h4 {
  font-size: 36px;
  font-weight: 700;
  color: #4CAF4F;
  margin: 10px 0;
}

.about-us p {
  color: #767676;
  font-size: 18px;
  font-weight: 500;
}

.about-us button {
  font-size: 20px;
  font-weight: 700;
  background-color: #4CAF4F;
  color: white;
  border: none;
  padding: 8px 50px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.about-us {
  margin-top: 150px;
  margin-bottom: 50px;
}

.about-us img {
  width: 100%;
}


/* trends page styling */

.top-chart-box {
  display: flex;
  justify-content: space-between;
}

.kidney-cancer div {
  background-color: #F7E0A6;
  border-radius: 5px;
  padding: 5px;

}

.top-chart-box span {
  font-size: 18px;
  font-weight: bold;
}

.top-chart-box-number {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}


.kidney-cancer img , .covid-19 img , .diabetes img {
  width: 100%;
}

.top-chart-box-number span {
  display: flex;
  font-weight: 600;
  font-size: 14px;
}


.covid-19 div {
  background-color: #B79BFF;
  border-radius: 5px;
  padding: 5px;
  
}

.diabetes div{
  background-color: #9ED2C5;
  border-radius: 5px;
  padding: 5px;
}
.top-searches-section {
  background-color: #ffffff;
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 0 5px #00000075;
}

.top-searches-section .top-heading {
  display: flex;
  justify-content: space-between;
}

.top-searches-section div {
  background-color: #ffffff;
  padding: 6px;
  border-radius: 10px;
}


.search-arrow img {
  width: 30px;
}





.top-searches-section select#inlineFormSelectPref {
  padding: 5px;
  font-size: 13px;
  min-width: 84px;
}

.top-searches-bottom-section span {
  color: #2e6919;
}

.top-searches-bottom-section .col-6 {
  text-align: end;
}

.top-searches-bottom-section hr{
  margin: 0;
}

.top-searches-bottom-section .col-12 {
  text-align: center;
}

.bottom-chart {
  margin-top: 40px;
  margin-bottom: 40px;
}

.main-right-chart {
  box-shadow: 0 0 5px #00000075;
  padding: 10px;
  border-radius: 5px;
}
.topics-filter {
  margin-bottom: 20px; /* Adjust the value as needed */
}

.topics-filter select#filter {
  width: auto;
}


.topics-filter span {
  color: black !important;
  font-size: 13px;
  font-weight: bold;
  
}

select#filter {
  font-size: 10px;
  background-color: #4caf4f;
  color: white;
  font-weight: 700;
}

.main-right-chart div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}



.row.align-items-start {
  row-gap: 20px;
  margin-top: 20px;
}


.topics-filter span {
  padding-right: 20px;
}

/* Interste Page Syling */

.alert-heading h1 {
  font-size: 50px;
  font-weight: 600;
  padding: 25px 0px;
  color: #4caf4f;
}

.alert-heading h2 {
  font-size: 40px;
  font-weight: 600;
  padding: 25px 0px;
  color: #3cb13c;
}
.intrest-alert-left {
  box-shadow: 0px 0px 6px 1px #00000040;
  border-radius: 40px;
  margin: 0 45px;
  padding: 65px 40px;
  margin-bottom: 20px;
}


.intreset-kidney-cancer-heading-1 span , .intreset-breast-cancer-heading-1 span , .intreset-ADHD-heading-1 span , .intreset-cancer-heading-1 span{
  font-size: 28px;
  font-weight: 700;
  color: #4caf4f;
}

.intreset-kidney-cancer a.most-relevant , .intreset-breast-cancer a.most-relevant , .intreset-ADHD a.most-relevant , .intreset-cancer a.most-relevant{
  color: #8D8D8D;
  font-size: 18px;
}
.intreset-kidney-cancer a.cancel , .intreset-breast-cancer a.cancel , .intreset-ADHD a.cancel , .intreset-cancer a.cancel {
  margin-left: 30px;
  font-size: 18px;
}


.add-alerts-btn {
  text-align: center;
  margin-top: 35px;
}

.add-alerts-btn a {
  background-color: #4caf4f;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: 600;
}


.intrest-alert-right-top-box .boxes {
  box-shadow: 0px 0px 6px 1px #00000040;
  border-radius: 28px;
  padding: 18px;
}


.intrest-alert-right-top-box .boxes span.boxes-heading {
  font-size: 20px;
  font-weight: 700;
  color: #4caf4f;
  /* margin-left: 10px; */
}


.intrest-alert-right-top-box .boxes img {
  width: 45px;
}

.intrest-alert-right-top-box .boxes p {
  font-size: 16px;
  padding-top: 10px;
}

.intrest-alert-right-top-box .read-more {
  text-align: center;
}

.intrest-alert-right-top-box .read-more a {
  background-color: #4caf4f;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 10px;
}


.intrest-alert-right-top-box .boxes .row {
  align-items: center;
}

.intrest-alert-right-top-box .read-more.first-btn {
  margin-top: 33px;
}


.intrest-alert-right-top-box .row {
  justify-content: center;
  row-gap: 20px;
}


/* paper summery page */

.paper-summery-padding {
  border-left: 5px solid #4CAF4F;
  padding-left: 25px;
  margin: 50px 0;
}

.paper-summery-padding-span {
  margin: 20px 0;
}

.paper-summery-padding-span span {
  background-color: #4caf4f;
  font-size: 24px;
  font-weight: 600;
  color: white;
  padding: 5px 20px;
}

.paper-summery-padding-span-ul li::marker {
color: #4caf4f;
}

ul.paper-summery-padding-span-ul li {
  font-size: 20px;
  color: #7b7b7b;
}

.search-insight.paper-summery-padding-left span {
  font-weight: bold;
  font-size: 19px;
}

a.Summarize-btn.aper-summery-btn {
  background-color: #0A0909;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 800;
}

.paper-summery-padding .search-card {
  padding: 10px 0;
}

/* paper summery page */


.loading-container {
  display: none; /* Hide the loading container by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* Ensure it's on top of other elements */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-container .spinner-border {
  width: 4rem;
  height: 4rem;
}

/* Styles for pagination container */
.pagination-container {
  display: flex;
}

.pagination {
  list-style: none;
  display: flex;
  gap: 5px;
}

.pagination a {
  display: inline-block;
  padding: 7px 14px;
  text-decoration: none;
  background-color: #3cb13c;
  color: #fff;
  border-radius: 5px;
}

.pagination a:hover {
  background-color: #00a221;
}

.pagination a.active {
  background-color: #333;
}

#paperTitle {
  font-size: 28px;
  color: #449d47;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;

}

.title-checkbox-container {
  display: flex;
  align-items: center;
}

.title-checkbox-container input[type="checkbox"] {
  margin-right: 10px; /* Adjust the spacing between the checkbox and the title */
}

/* Add to style.css */
.paper-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.paper-summary-table th, .paper-summary-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.paper-summary-table th {
  background-color: #4CAF4F;
  color: white;
  text-align: left;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff; /* Set white background for odd rows */
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #ffffff; /* Set white background for even rows */
}

.paper-summary-table tr:hover {
  background-color: #ddd;
}

.paper-summary-table td p {
  margin: 0;
}

.comparison-result-container {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.comparison-result-content {
  white-space: pre-line; /* Preserves line breaks */
  font-size: 16px;
  color: #333;
}

/* Add to responsive.css */
@media only screen and (max-width: 768px) {
  .paper-summary-table th, .paper-summary-table td {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .heading h1 {
    font-size: 36px;
  }
  
  .search-filter {
    padding: 10px;
  }

  .text-center i {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  .paper-summary-table th, .paper-summary-table td {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }

  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .nav-menu {
    gap: 5px;
  }
  .nav-menu li a {
    font-size: 16px;
  }
}


/* Button styling */
.btn-primary {
  background-color: #4CAF4F;
  border: none;
  color: white;
  padding: 10px 10px;
  font-size: 16px;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #61b364;
  color: #ffffff;
}

.btn-secondary {
  background-color: #d8f5d4;
  border: none;
  color: #367e35;
  padding: 10px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: #a7c4ae;
  margin-bottom: 20px;
  margin-top: 10px;
}
.btn-secondary:hover {
  background-color: #4CAF4F;
  color: white;
  border: none;

}

.intrest-alert-left {
  padding: 20px;
}

.intreset-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.intreset-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.interest-name {
  font-size: 16px;
  font-weight: bold;
  color: #367e35;
}

.custom-cancel-btn {
  border: none;
  background-color: transparent; /* Ensure no background color */
  padding: 0; /* Remove padding */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cancel-btn:hover {
  background-color: transparent; /* Ensure no background color on hover */
}

.custom-cancel-icon {
  width: 25px; /* Adjust the width as needed */
  height: 25px; /* Adjust the height as needed */
}


.cancel-btn {
  border: none;
  background-color: transparent; /* Ensure no background color */
  padding: 0; /* Remove padding */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cancel-btn:hover {
  background-color: transparent; /* Ensure no background color on hover */
}

.cancel-icon {
  width: 20px; /* Adjust the width as needed */
  height: 20px; /* Adjust the height as needed */
}
.top-chart-box {
  display: flex;
  justify-content: space-between;
}

.card-1 div {
  background-color: #DFF2D8; /* Light Green */
  border-radius: 5px;
  padding: 5px;
}

.card-2 div {
  background-color: #D0E7FF; /* Light Blue */
  border-radius: 5px;
  padding: 5px;
}

.card-3 div {
  background-color: #F0F0F0; /* Light Grey */
  border-radius: 5px;
  padding: 5px;
}


.top-chart-box span {
  font-size: 18px;
  font-weight: bold;
}

.top-chart-box-number {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.top-chart-box-number span {
  display: flex;
  font-weight: 600;
  font-size: 14px;
}

.top-chart img {
  width: 100%;
}

.nav-spacing {
  margin-top: 100px; /* Adjust this value as needed */
}
.read-full-paper-btn {
  background-color: #0A0909;
  color: white;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 800;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  margin-top: 20px;
}

.read-full-paper-btn:hover {
  background-color: #449d47;
  color: #ffffff;
}

/* Dropdown menu styling */
.dropdown-menu {
  border: 1px solid #4CAF50; /* Thin border with green color */
  background-color: white; /* White background color */
}

.dropdown-menu .form-check-input {
  margin: 0.25rem 0.5rem 0 0; /* Adjusting spacing */
}

.dropdown-menu .form-check-label {
  color: #4CAF50; /* Green font color */
}

.dropdown-menu .form-check:hover {
  background-color: #4CAF50; /* Green background color on hover */
  color: white; /* White font color on hover */
}

.dropdown-menu .form-check:hover .form-check-label {
  color: white; /* Ensure label color changes to white on hover */
}

.btn-custom {
  background-color: white; /* White background color */
  color: #4CAF50; /* Green font color */
  border: 1px solid #4CAF50; /* Thin green border */
}

.btn-custom:hover {
  background-color: #4CAF50; /* Green background color on hover */
  color: white; /* White font color on hover */
  border: 1px solid #4CAF50; /* Maintain green border on hover */
}

/* Ensure the dropdown items are aligned and spaced properly */
.dropdown-menu .form-check {
  padding: 5px 10px; /* Adding padding for better alignment */
  display: flex;
  align-items: center;
}

/* Top Searches dropdown styling */
.form-select {
  background-color: white; /* White background color */
  color: #4CAF50; /* Green font color */
  border: 1px solid #4CAF50; /* Thin green border */
}

.form-select:hover {
  background-color: #4CAF50; /* Green background color on hover */
  color: white; /* White font color on hover */
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
  border-top: 0.4em solid #4CAF50; /* Green arrow */
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
}

.btn-custom.dropdown-toggle:hover::after,
.form-select:hover::after {
  border-top: 0.4em solid white; /* White arrow on hover */
}

.equal-height {
  display: flex;
  flex-wrap: wrap;
}

.equal-height > div {
  display: flex;
  flex-direction: column;
}

.main-right-chart,
.top-searches-section {
  flex: 1;
}
/* Example styles for a large button */
.btn-large {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: #f8f9fa;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-hover .table-dark:hover {
  background-color: #454d55;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #454d55;
}

.table th,
.table td {
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}

.table th:last-child,
.table td:last-child {
  border-right: 0;
}

.table thead th {
  text-align: center;
  background-color: #343a40;
  color: #fff;
}

.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table th:first-child,
.table td:first-child {
  border-left: 0;
}

.table tfoot {
  background-color: #f8f9fa;
  text-align: right;
}

.table tfoot th,
.table tfoot td {
  border-top: 2px solid #dee2e6;
}

/* Custom styles for better key findings comparison */
.key-findings-column {
  background-color: #f1f8ff;
  font-weight: bold;
  text-align: left;
}

.summary-column,
.insights-column,
.actions-column {
  text-align: left;
}

/* Button styles */
.toggle-view-btn {
  background-color: #343a40;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  cursor: pointer;
  border-radius: 0.25rem;
}

.toggle-view-btn:hover {
  background-color: #495057;
}

.toggle-view-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
/* Ensure the container holding the sidebar has full height */
.container-fluid {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ensure the row holding the sidebar and main content has full height */
.container-fluid .row {
  flex: 1;
  display: flex;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.padding-custom-home {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#comparison-result {
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}
/* Comparison Result Container */
.comparison-result-container {
  background-color: #ffffff; /* White background for better contrast */
  padding: 25px; /* Padding for spacing inside the container */
  border-radius: 12px; /* Rounded corners */
  margin-top: 20px; /* Spacing from the top */
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border: 1px solid #e0e0e0; /* Light border around the container */
}

/* Section Title Styling */
.section-title {
  font-size: 22px; /* Adjust font size */
  font-weight: 700; /* Bold font */
  color: #2e7d32; /* Green color to match your theme */
  margin-bottom: 15px; /* Space between the title and content */
}

/* Styling for the content paragraphs */
.comparison-result-content p {
  font-size: 16px; /* Regular font size for content */
  color: #333; /* Darker text for better readability */
  line-height: 1.7; /* Increased line height for better spacing */
  margin-bottom: 20px; /* Margin between paragraphs */
}

/* Bold text inside the paragraph */
.comparison-result-content p strong {
  color: #000; /* Make the bold text black */
  font-weight: bold;
}

/* Italic text inside the paragraph */
.comparison-result-content p em {
  font-style: italic;
  color: #666; /* Softer color for emphasis */
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .comparison-result-container {
      padding: 15px; /* Adjust padding for smaller screens */
  }

  .section-title {
      font-size: 20px; /* Slightly smaller font size on smaller screens */
  }

  .comparison-result-content p {
      font-size: 14px; /* Smaller font size for mobile */
      line-height: 1.5;
  }
}
#reloadSummaryBtn {
  background-color: transparent; /* Keep it as outline style */
  border: 2px solid #28a745; /* Match the green color */
  color: #28a745; /* Green text */
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
}

#reloadSummaryBtn:hover {
  background-color: #28a745; /* Green background on hover */
  color: white; /* White text on hover */
}
.about-us img {
  width: 100%;
  height: 300px; /* Set a fixed height */
  object-fit: cover; /* Ensures the image covers the area without distorting */
  border-radius: 5px;

}
.loader {
  width: 45px;
  aspect-ratio: .75;
  --c: no-repeat linear-gradient(#4CAF4F 0 0); /* Assuming theme color */
  background: 
    var(--c) 0% 50%,
    var(--c) 50% 50%,
    var(--c) 100% 50%;
  background-size: 20% 50%;
  animation: l6 1s infinite linear;
}

@keyframes l6 {
  20% {background-position: 0% 0%  ,50% 50% ,100% 50% }
  40% {background-position: 0% 100%,50% 0%  ,100% 50% }
  60% {background-position: 0% 50% ,50% 100%,100% 0%  }
  80% {background-position: 0% 50% ,50% 50% ,100% 100%}
}

.loading-container {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Still allow interaction */

}
/* Modal Styling */
.styled-modal {
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 20px;
}

.modal-header {
  background-color: #4CAF4F;
  color: white;
  border-bottom: none;
  padding: 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  border-top: none;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.styled-list li button {
  background: none;
  border: none;
  color: #FF0000;
  font-size: 16px;
  cursor: pointer;
}

/* Button Styling */
.btn-primary {
  background-color: #4CAF4F;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #449d47;
}

.btn-secondary {
  background-color: #d8f5d4;
  border: none;
  color: #367e35;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-secondary:hover {
  background-color: #c4e3be;
}
