    .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        counter-reset: figureCaption;
    }
    .image-container {
      display: flex;
      flex: 0.8;
      align-items: center;
      margin: 5px;
    }


    .image-container figcaption {
      margin-top: 5px;
      font-size: smaller;
      color: #666;
    }
    .form-container {
        align-items: center;
        flex: 0.5;
        font-size: 30px;
        color: #666666;
    }

    .table-container {
      flex: 1.5;
      margin: 5px;
    }

    .image-container img {
      width: 100%;
      max-width: 100%;
      height: auto;
      border: 1px solid #ccc;
      text-align: center;
    }
    .figure {
        margin: 15px;
        width: 30%;
        text-align: center;
    }
    .figure img {
        width: 100%;
        border: 1px solid #ccc;
    }
    .figure-caption {
        font-size: larger;
        counter-increment: figureCaption;
    }

    .figure-caption:before {
        content: counter(figureCaption) ". ";
    }

    .caption {
        text-align: center;
        margin-top: 20px;
        font-size: smaller;
    }

    .description_small {
        text-align: justify;
        font-size: smaller;
        margin-top: 5px;
        color: #666;
    }
    .description {
    text-align: justify;
    margin-top: 10px;
    color: #000;
    }
    .custom-table {
      width: 100%;
      border-collapse: collapse;
    }
    .custom-table, .custom-table th, .custom-table td {
      border: 1px solid #ddd;
    }
    .custom-table th, .custom-table td {
      padding: 6px;
      text-align: center;
    }
    .custom-table th {
      background-color: #f2f2f2;
    }
    .custom-table {
      border: none;
    }
    .custom-table thead th:first-child,
    .custom-table tbody td:first-child {
      border-left: none;
    }
    .custom-table thead th,
    .custom-table thead th:last-child,
    .custom-table tbody td:last-child {
      border-right: none;
    }
    .custom-table thead th:first-child,
    .custom-table thead th:last-child {
      border-top: none;
    }
    .nowrap {
    white-space: nowrap;
    }
    #evaluation_comparison {
      height: 300px;
    }