/* app/assets/stylesheets/application.css */
/* Existing styles */
/* line 4, app/assets/stylesheets/photos.scss */
.header {
  margin-bottom: 2px;
}

/* line 8, app/assets/stylesheets/photos.scss */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}

/* line 15, app/assets/stylesheets/photos.scss */
.photo-container {
  position: relative;
  border: 2px solid #242424;
}

/* line 20, app/assets/stylesheets/photos.scss */
.photo {
  width: 100%;
  height: 200px;
  /* Adjust the height as needed */
  object-fit: cover;
  cursor: pointer;
}

/* line 27, app/assets/stylesheets/photos.scss */
.delete-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(255, 0, 0, 0.418);
  color: white;
  border-radius: 50%;
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out;
  text-decoration: none;
}

/* line 48, app/assets/stylesheets/photos.scss */
.delete-icon:hover {
  background-color: #d10000;
  text-decoration: none;
  color: white;
}

/* line 54, app/assets/stylesheets/photos.scss */
.full-screen-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* line 67, app/assets/stylesheets/photos.scss */
.full-screen-image {
  max-width: 90%;
  max-height: 90%;
}

/* line 72, app/assets/stylesheets/photos.scss */
.no-photos-message {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
  color: #666;
}

/*# sourceMappingURL=photos.css-17a0870b326c4260c18a662ef1a6bfcea8227dd81e68f00fe4685e0b1fe86872.map */
