/**
 * @Author: Sahar
 * @Date:   2025-06-05 T22:16
 * @Filename: style.css
 */

body {
  padding: 0;
  margin: 0;
}

.content {
  width: 1300px;
  margin: 0 auto;
}
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 100%;
}

ul.gallery {
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  width: 100%;
}
ul.gallery li {
  float: left;
  margin: 5px;
}
ul.gallery img {
  display: block;
  margin-bottom: 2px;
}
ul.gallery li p {
  text-align: center;
  margin: 5px 0;
}
.clear {
  clear: both;
  margin-top: -1px;
  height: 1px;
  overflow: hidden;
}
table {
  border-collapse: collapse;
}
.tab-header {
}
tr > td {
  /* margin-top: 55px;
    margin-bottom: 55px;
    margin-left: 5px;
    margin-right: 5px; */
}
th,
td {
  padding: 15px;
  text-align: center;
}
td {
  background: #f1eef6;
}
th {
  background: #045a8d;
  color: white;
  border: 2px solid white;
}
.even {
}
.odd {
  background-color: #ccc;
}
.warning {
  color: red;
}
.code {
  background: #f1eef6;
  padding: 5px;
}
/* .fancy-link-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100vh;
} */
.fancy-link {
  display: block;
  background-color: #2b8cbe;
  /* box-shadow: 0 5px 0 #045a8d; */
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  /* margin-right: 3px;
    margin-left: 3px; */
}
.fancy-link:hover {
  background-color: #74a9cf;
  cursor: pointer;
}
.fancy-link:active {
  /* box-shadow: none;
    top: 5px; */
}

/* header, footer */
.fixed {
  z-index: 9999;
  padding: 0;
  position: sticky;
  background: #023858;
  padding: 5px;
  color: #fff;
}
.dataset-title {
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
  align-items: center;
  padding-top: 8px;
}
.versions {
  margin-left: auto;
  order: 2;
  margin-right: 10px;
  padding-top: 8px;
}
nav a {
  padding: 5px;
}
.fixed a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.fixed a:hover {
  background-color: #3690c0;
}
.header {
  top: 0;
}
.navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.selected {
  background-color: #0570b0;
}
.footer {
  text-align: center;
  bottom: 0;
}
/* .responsive{
  text-align: center;
} */

.responsive {
  display: block;     
  margin: 0 auto;     
  max-width: 100%;    
  height: auto;    
}


/* 1) Each row is a flex container with six items */
.row {
  display: flex;
  flex-wrap: nowrap;         /* exactly six items, no wrapping */
  justify-content: center;   /* center all six items horizontally */
  gap: 20px;                 /* horizontal gap between items */
  margin-bottom: 40px;       /* space between row 1 and row 2 */
}

/* 2) Each item wraps one image + its caption */
.item {
  display: flex;
  flex-direction: column;    /* stack image above its caption */
  align-items: center;       /* center both horizontally */
}

/* 3) The image styling */
.gallery-img {
  width: 100%;               /* fill the container’s width */
  max-width: 160px;          /* limit how big it can grow */
  height: auto;
  display: block;
}

/* 4) The caption under each image */
.caption {
  margin-top: 8px;           /* a little space from the image */
  font-size: 0.9rem;
  text-align: center;
  color: #333;               /* optional: dark gray text */
}

