#image_display {
    width: 100%;
    max-width: 1000px;
    min-width: 350px;
    margin: 20px auto;
    text-align: center;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 25px;
}

#image_display.hidden {
    display: none;
}

#img {
    max-width: 800px;
    min-width: 700px;
    border: 1px solid #444;
    width: 100%;
    height: auto;
    border-radius: 10px;
}
#img-container #img-title {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 10px;
    color:#ccc;
}
#img-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
    margin-top: 10px;
    font-size: 25px;
    color: #ccc;
}


#img-container {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 800px;
    gap: 10px;
    text-align: center;
}

.nav-btn {
    background: transparent;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    color: #666;
    transition: color 0.2s ease;
    border-radius: 15px;
    border: 1px solid #666;

}

.nav-btn:hover {
    color: #E0E0E0;;
    border: 1px solid #E0E0E0;
}

#delete-btn {
    width: 70px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #666;
    background-color: #222;
    color: #E0E0E0;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

#delete-btn:hover {
    background-color: #E63946;
    border-color: #E63946;
    color: #fff;

}