.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: 4px 8px 12px rgba(255, 255, 255, 0.1);
}

.lightmode .container {
    box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.1);
}

#example-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
}

#imgModal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

#imgModal img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

#imgModal span {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    width: 90%;
}

.button {
    background-color: #00aa00;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 90%;
    cursor: pointer;
    font-family: inherit;
}