@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@500&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Mono', sans-serif;
    background-image: linear-gradient(to right, #e2e2e2, #c9d6ff);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1, h2 {
    font-size: 2em; /* Adjust the size as needed */
    text-align: center; /* Center align the text */
}

.menu {
    display: flex;
    align-items: center;
}

.menu__item {
    margin: 0 5px;
    position: relative;
}

.menu__item:hover .menu__child {
    opacity: 1;
    visibility: visible;
}

.menu__child {
    position: absolute;
    width: 268px;
    padding: 15px 15px;
    opacity: 0;
    visibility: hidden;
}

.list__item,
.list__link,
.menu__item {
    list-style: none;
    text-decoration: none;
}

.list__link {
    color: #000;
}

.list__item {
    border-top: 1px solid #aba7a7;
    border-bottom: 1px solid #aba7a7;
}

a.menu__link {
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 200;
    display: block;
    padding: 0px 20px;
    position: relative;
}

a.menu__link::before {
    content: '';
    height: 4px;
    width: 0;
    background: #7128d2;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

a.menu__link:hover::before {
    width: 100%;
}

.container {
    max-width: 1400px; 
    margin: 22px auto 20px auto; 
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; 
    overflow-y: hidden; 
    flex: 1;
}

.content {
    padding: 20px;
    overflow-y: auto; 
    max-height: 400px; 
}

.box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto; 
}

.title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px;
    color: white;
}

.title-bar .buttons {
    display: flex;
    align-items: center;
}

.title-bar .button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.title-bar .button.close {
    background-color: #ff5f56;
}

.title-bar .button.minimize {
    background-color: #ffbd2e;
}

.title-bar .button.maximize {
    background-color: #27c93f;
}

.title-bar .title {
    flex-grow: 1;
    text-align: center;
    font-size: 1.2em;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

td {
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

figcaption {
    margin-bottom: 5px;
    font-size: 1.1em;
}

p {
    margin: 0;
    font-size: 0.9em;
    color: #333;
}

td img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle; 
}

td strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

td p {
    margin: 0;
    font-size: 0.9em;
    color: #333;
}

footer {
    background: #1c1c1c;
    color: #fff;
    padding: 10px 0; /* Reduced padding */
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #ff7f50;
}

.footer-bottom {
    text-align: center;
    padding: 5px 0; /* Reduced padding */
    margin-top: 20px;
    border-top: 1px solid #444;
}
