.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.gap-2 {
  gap: 8px;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.bg-white {
  background-color: white;
}

.h-25 {
  height: 100px;
}

.\!h-full {
  height: 100% !important;
}

.h-fit {
  height: fit-content;
}

.w-full {
  width: 100%;
}

.w-15 {
  width: 60px;
}

@media (min-width: 768px) {
  .lg\:w-25 {
    width: 100px;
  }

  .lg\:w-max {
    width: max-content;
  }

  .lg\:px-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .xl\:w-max {
    width: max-content;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:w-25 {
    width: 100px;
  }
}

@media (max-width: 900px) {
  .xs\:w-full {
    width: 100%;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-2 {
  top: 0px;
}

.m-0 {
  margin: 0px;
}

.mx-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.overflow-auto {
  overflow: auto;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.fixed {
  position: fixed;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.p-4 {
  padding: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.text-green-800 {
  color: rgb(22 101 52);
}

.border-t-4 {
  border-top-width: 4px;
}

.bg-green-50 {
  background-color: rgb(240 253 244);
}

.border-green-300 {
  background-color: rgb(134 239 172);
}

.text-red-800 {
  color: rgb(153 27 27);
}

.border-red-300 {
  background-color: rgb(252 165 165);
}

.bg-red-50 {
  background-color: rgb(254 242 242);
}

.\-mx-1\.5 {
  margin-left: -0.375rem;
  /* 6px */
  margin-right: -0.375rem;
  /* 6px */
}

.\-my-1\.5 {
  margin-top: -0.375rem;
  /* 6px */
  margin-bottom: -0.375rem;
  /* 6px */
}

.ms-auto {
  margin-inline-start: auto;
}

.p-1\.5 {
  padding: 0.375rem;
  /* 6px */
}

.focus\:ring-2:focus {
  box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.focus\:ring-green-400:focus {
  --tw-ring-color: rgb(74 222 128);
}

.rounded-lg {
  border-radius: 0.5rem;
  /* 8px */
}

.h-8 {
  height: 2rem;
}

.w-8 {
  width: 2rem;
}

.inline-flex {
  display: inline-flex;
}

.hover\:bg-red-200:hover {
  background-color: rgb(254 215 170);
}

.right-2 {
  right: 8px;
}

.top-25 {
  top: 100px;
}

.z-1000 {
  z-index: 1000;
}

.min-w-96 {
  min-width: 384px;
}

.ml-1 {
  margin-left: 4px;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}

.opacity-0 {
  opacity: 0;
}

.uppercase {
  text-transform: uppercase;
}


/* 1-8-2025 */
/* Main container styles */
.projects-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Section headers */
.projects-section-header {
  color: #0066cc;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Collaboration card styles (simple version) */
.collab-card-wrapper {
  margin: 20px 0 20px 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.collab-logo-container {
  flex-shrink: 0;
  width: 90px;
  height: auto;
  display: flex;
  align-items: center;
}

.collab-logo-image {
  max-width: 100%;
  height: auto;
}

.collab-title-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.collab-title-link:hover {
  text-decoration: underline;
}

/* External link icon for collaborations */
.external-link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  padding-right: 20px;
  margin-left: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Current Project card styles (detailed version) */
.project-card-wrapper {
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.project-logo-container {
  flex-shrink: 0;
  width: 90px;
  height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 5px;
}

.project-logo-image {
  max-width: 100%;
  height: auto;
}

.project-content-container {
  flex: 1;
}

.project-title-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.project-title-link:hover {
  text-decoration: underline;
}

.project-duration {
  color: #666;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 12px;
}

.project-description {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Divider */
.projects-section-divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 40px 0;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .project-card-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-logo-container,
  .collab-logo-container {
    margin-bottom: 15px;
  }
}








.fw-bold {
  font-weight: bold;
}










/* Detail đơn vị style */
.av-article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  /* font-family: Arial, sans-serif; */
}

.av-article-title {
  color: #0051a2;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.3;
}

.av-article-date {
  color: #666;
  margin-bottom: 24px;
}

.av-article-intro {
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}

.av-article-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.av-article-text {
  flex: 1;
  line-height: 1.5;
}

.av-article-image {
  flex-shrink: 0;
  width: 200px;
}

.av-article-paragraph {
  margin-bottom: 16px;
}

.av-article-link {
  color: #0051a2;
  text-decoration: none;
}

.av-article-link:hover {
  text-decoration: underline;
}





/* Detail dự án style */
.greenfield-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.greenfield-title {
  color: #0051a2;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}

.greenfield-info-table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
  border: none;
}

.greenfield-info-table,
.greenfield-info-table td,
.greenfield-info-table tr {
  border: none;
}


.greenfield-info-label {
  font-weight: bold;
  padding: 8px 16px 8px 0;
  vertical-align: top;
  width: 120px;
}

.greenfield-info-content {
  padding: 8px 0;
}

.greenfield-link {
  color: #0066cc;
  text-decoration: none;
}

.greenfield-link:hover {
  text-decoration: underline;
}

.greenfield-section {
  margin-bottom: 32px;
}

.greenfield-section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.greenfield-description {
  display: flex;
  gap: 24px;
}

.greenfield-logo {
  flex-shrink: 0;
  width: 250px;
  height: 90px;
}

.greenfield-text {
  margin-bottom: 16px;
  line-height: 1.5;
}

.greenfield-subtitle {
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 8px;
}

.greenfield-list {
  list-style-type: disc;
  padding-left: 32px;
}

.greenfield-list-item {
  margin-top: 8px;
  margin-left: 8px;
}

.greenfield-publication {
  margin-bottom: 24px;
}

.greenfield-publication-title {
  margin-bottom: 8px;
}

.greenfield-publication-journal {
  font-style: italic;
}

.greenfield-publication-links {
  margin-top: 8px;
}

.greenfield-button {
  color: #0066cc;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font: inherit;
}

.bibsonomy-links-list {
  list-style-type: none;
  padding: 0;
  float: right;
}

.bibsonomy-link {
  display: inline-block;
  font-size: 1.1em;
  line-height: 2em;
  margin-left: 1.5em;
}

.bibsonomy-link-bibtex a {
  color: rgb(0, 74, 143) !important;
}

@media (max-width: 767px) {

  .av-article-content {

    flex-direction: column-reverse
  }

}




/* External link icon for collaborations */
.external-link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  padding-right: 20px;
  margin-left: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}