
.pointer{
	cursor: pointer;
}

.title-font-color-link{
	color: white;
	font-size: 24px;
	text-decoration: none;
}
.title-info-journal{
	font-size: 15px;
}

.title-text-issue{
	font-size: 1.25rem;
	color: #6c6767;
}

a.accordion-button {
  font-weight: 600;
  font-size: 13px;
  color: #6c6767;
  background-color:#f7f4f5;/* light gray background */
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
}


.accordion-button.no-icon::after {
    display: none !important;
	
}

.accordion-button.compact-button {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    min-height: 30px;
    line-height: 1.2;
	text-decoration: underline !important;
}

.accordion-item:first-child .accordion-button
 {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.accordion-item:last-child .accordion-button
 {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}


.accordion-item {
  border: 1px solid black !important;
 
  margin-bottom: 8px;
}

.accordion-button:not(.collapsed) {
	background-color: #f7f4f5;
	color: #6c6767;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:hover {
  background-color: #e9e7e8;
  color: #6c6767;
  }
  
  .accordion-button:focus {
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }
  
  
  
 .nav-link.focus,
 a#infoDropdown.nav-link, 
 .nav-tabs .nav-link.active {
  	color: #6c6767 !important;
    }
	

/* Accordion Body */
.accordion-body {
  background-color: #fff;
  border-top: 1px solid #e9e7e8;
  color: #6c6767;
}

.accordion-body a {
  color: #6c6767;
  text-decoration: none;
}

.accordion-body a:hover {
  color: #6c6767;
  text-decoration: underline;
}

.accordion-body a:visited {
  color: #6c6767;
  text-decoration: none;
}

/* Issues Articles lists*/
/* Optional: Add spacing around the tabs */
.nav-tabs {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

/* Ensure tab items have subtle spacing */
.nav-tabs .nav-item {
  margin-right: 0.3rem;
}

/* Clean and consistent nav-link style */
.nav-tabs .nav-link {
  font-weight: 500;
  color: #6c757d;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem 0.25rem 0 0;
}

/* Active tab */
.nav-tabs .nav-link.active {
  color: #6c757d;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

/* Hover */
.nav-tabs .nav-link:hover {
  color: #6c757d;
  background-color: #f8f9fa;
  border-color: #dee2e6 #dee2e6 #fff;
}

/* Disabled tab */
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
  border-color: transparent;
}

.simple-link{
	color:#517775 !important;
	border-color: #dee2e6 !important;
	padding-bottom: 2px;
	margin-bottom: 2px;
}

.simple-link.active{
	color:white;
	border-color: #6c757d !important;
	padding-bottom: 1px;
}

.simple-link.visited{
	color:#517775 !important;
	border-color: #6c757d !important;
	padding-bottom: 1px;
}

/*form archive*/

.form-select:focus {
  border-color: #dee2e6;        /* your custom color */
  box-shadow: 0 0 0 1px #dee2e6 ; /* subtle shadow for accessibility */
  outline: 0; /* remove default outline */
}

.archive-form {
    margin-bottom: 1rem;
  }

  .archive-select {
    width: 100%;
    min-width: 150px;
    padding: 0.5rem;
    font-size: 0.8rem;
	color:#625d5d ;
  }


  
  .archive-submit {
	background-color:white!important;
	 color:#517775!important; 
	 font-size: 0.8rem; 
	 border: 1px solid #517775; /* <-- fixed border */
	 padding: 0.4rem 0.75rem;
	 border-radius: 4px; /* optional, makes corners rounded */
	 cursor: pointer;
 }
  .archive-submit:hover {font-weight: bold;}

  /* --- Recent Issues Grid --- */
  .recent-issues-grid {
    margin-top: 1rem;
  }

  .recent-issues-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 columns */
    gap: 1rem; /* Adjust gap as needed */
    list-style: none;
    padding: 0;
    margin: 0;
    justify-items: center; /* Optional: center content in each grid cell */
  }

  .recent-issues-list li {
    text-align: center;
    padding: 3px;
  }

  .recent-issues-list img {
    max-width: 100%;
    height: auto;
  }

  .archiveText {
    display: block;
    font-size: 0.8rem;
  }

  @media (max-width: 991px) {
    .recent-issues-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 575px) {
    .recent-issues-list {
      grid-template-columns: 1fr;
    }
  }
  .hidden-article {
      display: none ;
  }

  .article-flex-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
  }

  .article-main {
    padding: 0.5rem;
    /* Optional highlight bar */
   
    border-radius: 0.5rem;
  
    flex: 1;
  }

  .article-main h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .article-main h4:hover {
    text-decoration: underline;
  }

  .article-main h3 {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
  }

  .article-main .article_type {
    font-size: 0.75rem;
	font-weight: bold;
    color: #fff;
    background-color: #4b6e91;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
  }

  .article-main .special_issue_link {
    font-size: 0.75rem;
	border: 1px solid #4b6e91;
	font-weight: bold;
    color: #4b6e91;
    background-color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
	cursor: pointer;
  }

  .article-main .special_issue_link:hover {
    font-weight: bold;
	color: #4C8985;
  }

  .article-main .article_open_access {
    font-size: 0.75rem;
	font-weight: bold;
    border: 1px solid #4b6e91;
    color: #4b6e91;
    background-color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
    cursor: default;
  }

  .article-main h6 {
    font-size: 0.7rem;
    color: #6c757d;
    margin: 0.5rem 0;
	font-weight: 600;
	
  }

  .article-main .inline {
    gap: 1rem;
    align-items: center;
    margin-top: 0.75rem;
  }

  .article-icons {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      padding-left: 10px;
  }

  .article-actions {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .article-actions img {
      width: 24px;
      height: 24px;
      cursor: pointer;
  }
  custom-card-journal
  .article-card {
      margin-bottom: 20px;
      padding: 0 5px 0 5px;
      border: 1px solid #bab6b6;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      background-color: #fff;
  }
  
  .logo-banner-img-journals-carousel {
    height: 120px;
    object-fit: cover;
  }

  .journal-banner-container {
    height: 120px;
    overflow: hidden;
    position: relative;
  }
  
  .dropdown-item.active, .dropdown-item:active {
	background-color: white;
	}

	.dropdown-item:hover {
                background-color: #f0f8ff; /* aliceblue */
    }
	
	.journal-card {
	  position: relative;
	  background-color: white;
	 
	  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	  transition: box-shadow 0.3s ease;
	  overflow: hidden;
	  
	  border: 1px solid rgba(0, 0, 0, 0.2); /* slightly darker border */
	    border-radius: 6px;
	}

	/* Default: hide the description */
	.card-description {
	  max-height: 0;
	  opacity: 0;
	  overflow: hidden;
	  transition: max-height 0.4s ease, opacity 0.3s ease;
	}

	/* Reveal on hover */
	.journal-card:hover .card-description {
	  max-height: 500px; /* enough space for a short paragraph */
	  opacity: 1;
	}

	/* Optional: text styling */
	.card-text {
	  color: #6c6767;
	  font-size: 12px;
	  line-height: 1.5;
	}

	.card-title {
	  font-weight: 600;
	  color: #6c6767;
	  margin-bottom: 10px;
	}



	.content_issueblock {
	    display: flex;
	    flex-direction: column; /* stack content vertically */
	    height: 100%; /* make all cards equal height */
	}

	.content_issuetext {
	    flex: 1 1 auto; /* allow it to grow to fill space */
	}

	.closed-message {
	   
	    padding: 0.5rem;
	    text-align: center;
	    font-weight: bold;
	    border-radius: 0 0 0.25rem 0.25rem;
	}
	
	.card-body-custom {
	    display: flex;
	    flex-direction: column;
	    height: 100%;
	}
	
	footer.alert {
	  margin-top: auto;
	}


	.dropdown-item.active {
	  
	    text-decoration: none;
	    background-color:#e9e7e8 !important;
	}
	.pricing-table {
    width: 70%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.pricing-table caption {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    color: #2c3e50;
}

.pricing-table th {
    background: linear-gradient(135deg, #dfe4e9, #e2e9ef);
    color: white;
    padding: 5px 5px;
    text-align: center;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.pricing-table th:first-child {
    text-align: left;
    min-width: 200px;
}

.pricing-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
    border-right: 2px solid #e9ecef;
}

.pricing-table tbody tr:hover {
    background-color: #f1f8ff;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.price {
    font-weight: 400;
    color: #27ae60;
}

.custom-row td {
    background: #fff3cd;
    font-weight: 600;
    color: #856404;
}

.description {
    margin: 15px 0;
    padding: 15px;
    background: #e8f4fd;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .service-section {
        padding: 20px 15px;
    }
    
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 6px;
    }
}

#accordionFlushExample{
	width:72%;
}

.editorial-head-card{
	width:72%;
}
