/* style.css */

body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1 {
  text-align: center;
}

.info {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.grid-row {
  display: flex;
}

.grid-cell {
  width: 150px;
  height: 100px;
  border: 1px solid #ccc;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  position: relative;
  cursor: pointer;
}

.grid-cell:hover {
  background-color: #e9e9e9;
}

.video-in-cell {
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
  padding: 5px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
