body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

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

body {
    background-color: lightblue;
  }

.compartment {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Optional: Add shadow for visual separation */
    margin: 0 10px; /* Adds equal space on the left and right */
}

.compartment:first-child .images-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.compartment img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.compartment p {
    margin: 10px 0;
    font-weight: bold;
    color: blue;
    cursor: pointer;
}
