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

#lighters {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.lighter {
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px;
	transition: background-color 0.2s;
}

.lighter a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.lighter:hover {
	background-color: #f8f8f8;
	cursor: pointer;
}

.large-thumb {
  width: 300px;
  height: 300px;
  
}


.coming-soon {
	font-style: italic;
	color: #999;
}

.title-with-flames {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.title-with-flames h1 {
  font-size: 28px;
  margin: 0;
}

.flame-icon {
  width: 32px;
  height: auto;
}

.intro {
	font-style: italic;
	color: #444;
	margin-bottom: 30px;
	line-height: 1.6;
	text-align: center;
	padding: 0 10px;
}

.disclaimer {
	background-color: #fff9e6;
	border: 1px solid #ffd27f;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 8px;
	font-size: 14px;
	color: #444;
	line-height: 1.5;
	margin-top: 20px;
}

.how-it-works {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
}

.how-it-works a {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  font-size: 15px;
}


img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

#photos div {
	margin-bottom: 20px;
}

input, textarea, button {
	width: 100%;
	margin-top: 10px;
	padding: 10px;
	box-sizing: border-box;
}

.photo-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.photo-card {
  display: flex;
  align-items: flex-start;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.photo-card:hover {
	background-color: #f0f0f0;
}

.thumb {
	object-fit: cover;
	border-radius: 6px;
	margin-right: 15px;
}

.large-thumb {
  width: 180px !important;
  height: 180px !important;
}

.info {
	flex-grow: 1;
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	max-width: 90%;
	max-height: 90%;
	text-align: center;
	overflow-y: auto;
}

.modal-content img {
	max-width: 100%;
	max-height: 80vh;
	height: auto;
	width: auto;
	object-fit: contain;
	border-radius: 6px;
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
}


.welcome {
  background-color: #f5faff;
  border-left: 4px solid #4ac2ff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.upload-form label {
  font-weight: bold;
}

.upload-form input[type="file"],
.upload-form input[type="text"],
.upload-form textarea {
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.upload-form button {
  background-color: #222;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.upload-form button:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.loader {
  font-size: 16px;
  color: #333;
  padding: 10px;
  text-align: center;
}

.upload-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-size: 18px;
}

.upload-box {
  text-align: center;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.location-group {
  margin-bottom: 10px;
}

.location-preview {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

.location-preview iframe {
  margin-top: 10px;
}