body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    text-shadow: 2px 2px 4px #000000;
}

input[type="text"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

input[type="text"]:focus {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
    outline: none;
}

.container {
    list-style: none;
    padding: 0;
    display: flex;
    width: 100%;
    overflow-x: auto;
    transform-origin: left top; /* Zooms out from the top left corner */
    transition: transform 0.5s ease; /* Smooth transition for the transform */

}

.container > li {
    flex: 1;
    border: 1px solid black;
    box-sizing: border-box;
    min-width: 100px;
}
.container > li img {
    width: 100%; /* Make the image fill the column width */
    height: auto; /* Keep the image aspect ratio */
    cursor: pointer; /* Change cursor on hover */
    border-radius: 10px;
}
.running {
    background-color: grey;
    color: darkgray;
}
.error {
    background-color: rgb(44, 0, 0);
    color: white;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 80%; /* Adjust based on preference */
    max-height: 80%; /* Adjust based on preference */
}

button#save {
    padding: 10px 20px;
    background-color: #2c5364; /* Dark shade matching the gradient */
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000000;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    position: fixed; /* Fixed position relative to the viewport */
    bottom: 20px; /* 20px from the bottom of the viewport */
    right: 20px; /* 20px from the right of the viewport */
    z-index: 1000; /* Ensure it's above other elements */
}

button#save:hover {
    background-color: #203a43; /* Slightly lighter shade for hover */
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.3);
}

button#save:active {
    background-color: #0f2027; /* Even lighter shade for active/click */
}
ul {
    list-style: none;
}