body {
    background-color: #f8f8f8;
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    display: flex;
    justify-content: space-between;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.logo a {
    color: #2828FF;
    text-decoration: none;
}

.contact-info {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.table-container {
    margin-bottom: 10px;
}

table {
    font-size: 24px;
    border-collapse: separate;
    border-spacing: 10px;
}

td {
    padding: 10px;
    border: 1px solid #000;
}

.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

img {
    max-width: 50%;
    height: auto;
    margin-bottom: 10px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="url"],
input[type="file"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

input[type="submit"] {
    padding: 5px 20px;
    background-color: #337ab7;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    height: 30px;
    margin-bottom: 10px;
}

input[type="submit"]:hover {
    background-color: #23527c;
}

.search-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    font-size: 16px;
}

.search-form input[type="text"] {
    width: 200px;
    padding: 5px;
    font-size: 16px;
}

.search-form input[type="submit"] {
    padding: 5px 10px;
    background-color: #337ab7;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.search-form input[type="submit"]:hover {
    background-color: #23527c;
}

.website-link {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.content {
    margin-top: 20px;
    font-size: 18px;
}

.content p {
    margin-bottom: 10px;
}

.thumbnail {
    margin-top: 20px;
}

.thumbnail img {
    max-width: 100%;
    height: auto;
}

.search-wrapper {
    display: flex;
    align-items: center;
}

.search-wrapper input[type="text"] {
    margin-right: 5px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: auto;
}

.overlay img {
    display: block;
    margin: 20px auto;
    max-width: 90%;
    max-height: 90%;
}
