body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    background-color: white;
}

a {
    color: blue;
}

a:hover {
    color: mediumblue;
}

a:active {
    color: darkblue;
}

.home-header {
    color: white;
    padding: 20px;
    text-shadow: 2px 2px 2px black;
    margin: 0;
    background-image: linear-gradient(blue, darkblue);
}

.home-title {
    font-family: Arial Black, Arial, sans-serif;
    font-weight: bold;
    margin: 0;
}

.home-subtitle {
    color: #efefef;
    margin: 0;
}

.page-heading {
    color: white;
    font-family: Arial Black, Arial, sans-serif;
    font-size: 16pt;
    text-shadow: 1px 1px 1px black;
    padding: 10px;
    margin: 0;
    background-image: linear-gradient(blue, darkblue);
}

.tab-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    background: darkblue;
    border-bottom: 1px solid black;
    padding: 10px 10px 0;
    margin-bottom: 20px;
}

.tab {
    display: block;
    color: black;
    text-decoration: none;
    background: #ddddff;
    border: 1px solid black;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
    padding: 5px 10px;
}

.tab-active {
    background: white;
    position: relative;
}

.tab:hover {
    background-image: linear-gradient(#ddddff, #aaaaff);
}

.tab-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: white;
}

.tab-active:hover {
    background-image: none;
}

.product-section {
    display: inline-block;
    border: 1px solid black;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.product-section-table {
    border-collapse: collapse;
}

.product-section-header {
    font-size: 14pt;
    border-bottom: 1px solid black;
    border-radius: 10px 10px 0 0;
    background-color: #efefef;
    padding: 10px;
}

.product-section-body {
    border-radius: 0 0 10px 10px;
    background-color: white;
    padding: 20px;
}

.product-label {
    margin: 0 5px;
}


.notice-box {
    background-color:lightyellow;
    border:1px solid black;
    border-radius: 5px;
    padding:5px;
    display:inline-block;
    font-size:16pt;
}

.table-center {
    margin-left: auto;
    margin-right: auto;
}

.table-borders {
    border: 1px solid black;
    border-collapse: collapse;
}

.table-borders td, .table-borders th {
    border: 1px solid black;
}

.table-textleft td {
    text-align: left;
}

.big-beautiful-button {
    color:black;
    font-size: 16px;
    text-decoration: none;
    background-color:skyblue;
    border: 5px skyblue outset;
    padding: 10px;
}

.big-beautiful-button:hover {
    color:black;
    background-color: lightskyblue;
    border-color: lightskyblue;
}

.big-beautiful-button:active {
    color:black;
    border-style: inset;
    padding: 11px 9px 9px 11px;
}