body	{
	background-color: #CCCC66;
	color: #000000;
	}

img {
    border: 4px solid #FFFFFF; /* Initial border color */
    transition: border-color 0.3s ease; /* Smooth transition */
}
.image-text {
    background-color: rgba(204, 204, 102, 0.8);
    display: none; /* Initially hidden */
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease; /* Smooth fade-in/out */
}
.grid-container {
  border: 40px solid transparent;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 40px;
  width: 100%;
}
.image-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  text-align: center;
  width: 100%;
}
.media-name {
    /* color: #34495E; */
    /* color: #FFFFFF; */
    color: #4A4A00;
    display: none;
    font-family: helvetica,verdana,sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 8px;
}
#toggleNamesBtn {
    background-color: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
    /* font-size: 16px; */
    font-family: helvetica,verdana,sans-serif;
    padding: 10px 20px;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1000;
}
