
table.default-table {
  border-collapse: collapse;
  max-width: 800px;
}
th.default-table {
  background-color: blue;
  color: white;
  padding: 10px;
  text-align: left;
  border-bottom: none; /* Remove the bottom border */
}
th:first-child.default-table {
  border-radius: 10px 0 0 0; /* Rounded corners only for the bottom */
}
th:last-child.default-table {
  border-radius: 0 10px 0 0; /* Rounded corners only for the bottom */
}
td.default-table {
  max-width:400px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
tr:nth-child(even).default-table {
  background-color: #f2f2f2;
}
table.size-table {
  border-collapse: collapse;
}
h2.size-table {
  margin-block-end:0px;
}
th.size-table {
  background-color: blue;
  color: white;
  padding: 6px;
  text-align: left;
  border-bottom: none; /* Remove the bottom border */
}
th:first-child.size-table {
  border-radius: 10px 0 0 0; /* Rounded corners only for the bottom */
}
th:last-child.size-table {
  border-radius: 0 10px 0 0; /* Rounded corners only for the bottom */
}
td.size-table {
  max-width:400px;
  padding: 2px;
  text-align: center;
  border: 1px solid #ddd;
}
tr:nth-child(even).size-table {
  background-color: #f2f2f2;
}
h2.compressed-table{
  margin-block-end:0px;
}
table.compressed-table {
  border-collapse: collapse;
}
th.compressed-table {
  background-color: blue;
  color: white;
  padding: 6px;
  text-align: left;
  border-bottom: none; /* Remove the bottom border */
}
th:first-child.compressed-table {
  border-radius: 10px 0 0 0; /* Rounded corners only for the bottom */
}
th:last-child.compressed-table {
  border-radius: 0 10px 0 0; /* Rounded corners only for the bottom */
}
td.compressed-table {
  max-width:400px;
  padding: 2px;
  border-bottom: 1px solid #ddd;
}
tr:nth-child(even).compressed-table {
  background-color: #f2f2f2;
}

.style-unselected {
  border: 1px solid grey;
}
.style-selected {
  border: 2px solid red;
}
.no-border {
  border: none;
}
.btn-group {
  max-height: 800px;
}
.btn-group button {
    background-color: #ffffff;

    border-left: 1px solid grey;
    border-top: 1px solid grey;
    border-right: 1px solid grey;
    border-bottom: none; 

    cursor: pointer;

    width: 90%;

    min-height: 42px;

    display: block;

    font-size: 7pt;
}

.btn-group button:nth-last-child(1) {
    border-bottom: 1px solid grey;
    /* Prevent double borders */
}
.btn-group button:nth-last-child(2) {
    border-bottom: 1px solid grey;
    /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
    transform: scale(1.2);
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 900;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.logo_sub_div {
 width: 600px;
 height: 340px;
 max-height: 340px;
 border: 1px solid #ccc;
 background-image: linear-gradient(to top left, grey, white);
 display: grid;
 grid-template-columns: 1fr 2fr;
 grid-template-rows: minmax(0,1fr);
}
.displayblock {
  display: block;
}
.hidden {
  display: none;
}
.name_sub_div {
 width: 800px;
 height: 340px;
 max-height: 340px;
 border: 1px solid #ccc;
 background-image: linear-gradient(to top left, grey, white);
 display: grid;
 grid-template-columns: 1fr 1fr 2fr;
 grid-template-rows: minmax(0,1fr);
}
.name_sub_div.hidden {
  display: none;
}
.form_set_sizes {
    border: 1px solid black;
    padding-left: 5px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

.form_size_qty {
    width: 4ch;
    margin-left: 10px;
    border: 0;
    background-color: #ffffff;
}

.form_size_qty_div {
    border: 1px solid black;
    margin-right: 10px;
    display: grid;
    grid-template-columns: 6ch 1fr;
    grid-template-rows: auto;
}

.form_size_label {
    padding-left: 10px;
}

.form_gender_sizes {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
    grid-template-rows: auto auto;
    padding-bottom: 5px;
    margin-left: 10px;
    gap: 3px;
}

.form_form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.form_1);
}

.form_text_input,
.form_select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.form_body_class {
    background-image: url("paper-wallpaper.form_jpg");
    background-size: cover;
    font-family: Arial, sans-serif;
}

.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Hover effect */
.button-link:hover {
  background-color: #45a049;
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: grey;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: grey transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition-delay: 0.25s;
}

.buttonflasher {
  animation-name: buttonflasher;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes buttonflasher {
  0% {
    background-color: #ff0000;
  }
  49% {
    background-color: #ff0000;
  }
  50% {
    background-color: #0000ff;
  }
  100% {
    background-color: #0000ff;
  }
}
 
@keyframes svgflasher {
  0% {
    fill: #ffffff;
  }
  50% {
    fill: #ffffff;
  }
  51% {
    fill: #00ff00;
  }
  100% {
    fill: #00ff00;
  }
}
@keyframes onlyonecolor {
  0% {
    fill: #ffffff;
  }
  100% {
    fill: #ffffff;
  }
}
/*Use to make browser "think" there is a new animation*/
@keyframes svgflasherdup {
  0% {
    fill: #ffffff;
  }
  50% {
    fill: #ffffff;
  }
  51% {
    fill: #00ff00;
  }
  100% {
    fill: #00ff00;
  }
}
@keyframes onlyonecolordup {
  0% {
    fill: #ffffff;
  }
  100% {
    fill: #ffffff;
  }
}


  