/*
Theme Name: My Custom Grid Theme
Author: ChatGPT
Description: A custom WordPress theme with a 5x4 random image grid and Lightbox.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-grid-theme
*/


.image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  padding: 20px;
}

.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.refresh-button {
  display: block;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}