body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 40px;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    font-family: 'Times New Roman', Times, serif;
    color: #222;
    font-weight: normal;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    text-align: center;
}

h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.2em;
}

form {
    margin-bottom: 30px;
    text-align: center;
}

input, button {
    font-family: 'Times New Roman', Times, serif;
    padding: 10px;
    margin: 10px 5px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

#error {
    color: #a00;
    text-align: center;
    margin-bottom: 20px;
}

#reports {
    max-width: 1000px;
    margin: 0 auto;
}

#projectList {
    list-style: none;
    padding: 0;
}

.project {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.section {
    margin-bottom: 40px;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-item {
    flex: 1 1 250px;
    max-width: 250px;
    text-align: center;
}

.report-image {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.report-image:hover {
    transform: scale(2.0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-description {
    margin: 10px 0 0;
    font-size: 0.95em;
    color: #444;
}

.report-video {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #eee;
}

.video-description {
    text-align: center;
    margin: 10px 0 0;
    font-size: 0.95em;
    color: #444;
}

.report-gif {
    display: block;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #eee;
}

.gif-description {
    text-align: center;
    margin: 10px 0 0;
    font-size: 0.95em;
    color: #444;
}

.links-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.links-list li {
    margin: 10px 0;
}

.links-list a {
    font-family: 'Times New Roman', Times, serif;
    color: #005566;
    text-decoration: none;
    font-size: 1em;
}

.links-list a:hover {
    text-decoration: underline;
}

a[href="/reports.html"] {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #005566;
    text-decoration: none;
}

a[href="/reports.html"]:hover {
    text-decoration: underline;
}