/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.thumbnail {
    width: 200px;  /* Small thumbnail size */
    height: auto;
    margin: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Lightbox effect */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.history-section {
    text-align: left;
    max-width: 80%;
    margin: auto;
    line-height: 1.6;
    padding: 10px;
}
.certification-section {
    text-align: left;
    max-width: 80%;
    margin: auto;
    line-height: 1.6;
    padding: 10px;
}

/* Explicitly set paragraph alignment */
.history-section p {
    text-align: left;
}

/* Center the specifications table */
.specs-table {
    width: 60%;
    margin: 20px auto; /* Centers the table */
    border-collapse: collapse;
    text-align: center;
}

/* Style table */
.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.specs-table th {
    background-color: #000;
    color: #fff;
    font-weight: bold;
}