/*nav.navbar > .container {
  max-width: 1320px;
}

*/
.navbar-brand
{
  display:none;
}
.nav-item:last-child .dropdown-toggle{
  display:none;
}


.custom-action-table tr:not(.action-section):first-child td
{
    background-color: rgb(17, 131, 32);
    color: #fff;
    font-weight: 500;
    padding: 20px;
}

.action-table table th:nth-child(2),
.action-table table td:nth-child(2) {
  display: none;
}

/* Table NOT inside an .action-table ancestor */
table:not(.document-table):not(:has(.action-table &)){
  table-layout:fixed;
}

table:not(.document-table):not(:has(.action-table &))
  > tbody
  > tr:not(.action-section):first-child
  > td {
  background-color: rgb(17, 131, 32);
    color: #fff;
    font-weight: 500;
    padding: 20px;
    width:25%;
}
table:not(.document-table):not(:has(.action-table &)) > tbody > tr:not(.action-section) > td {
    word-break: break-word;
}

/* ROBERTO updates Mon Nov 24 */

/* preventing nav items from stretching too wide */
.navbar .navbar-nav .nav-item {
  max-width: 330px;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item .nav-link {
  text-align: center;
}

#navbarNav .navbar-nav.ms-auto {
  margin-left: inherit !important;
}

.navbar-expand-xl .navbar-collapse {
  justify-content: center;
}
@media (max-width:768px) {
  .custom-action-table .content {
    overflow-y: scroll;
  }
  .custom-action-table .content table {
    position: relative;
    width: 1300px;
  }
  
  
  .custom-action-table .content table::before {
    content: "Scroll right to see all 4 options";
    position: absolute;
    top: -45px;
    left: 0;
    background: #fff3cd;
    color: #856404;
    padding: 8px 12px 8px 35px;
    border-radius: 4px;
    font-size: 18px;
    border: 1px solid #ffeebb;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
  }

  .custom-action-table .content table::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23856404'%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 16px 16px;
    background-color: #fff3cd;
  }
  
}


