/* General Styles for the Emotional Receipt Printer */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2 {
  color: #333;
  font-size: 2em;
  text-align: center;
}

h2 {
  font-size: 1.5em;
  margin-top: 20px;
}

a {
  text-decoration: none;
  color: #2c8cff;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

/* Container for the whole receipt tool */
.receipt-tool-container {
  max-width: 800px;
  margin: 30px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mood Buttons */
.mood-selection {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.mood-btn {
  padding: 12px 20px;
  background-color: #2c8cff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.mood-btn:hover {
  background-color: #005f96;
}

/* Confession Box */
.receipt-box {
  margin-top: 30px;
  padding: 20px;
  background-color: #eaf7ff;
  border-radius: 8px;
  text-align: center;
  min-height: 100px;
  color: #333;
  font-size: 1.2em;
  line-height: 1.5;
}

.receipt-tag {
  font-size: 1.3em;
  font-weight: bold;
  color: #2c8cff;
}

/* Share Button Section */
#share-section {
  margin-top: 30px;
  text-align: center;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.share-btn {
  padding: 10px 20px;
  background-color: #2c8cff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.share-btn:hover {
  background-color: #005f96;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-facebook {
  background-color: #3b5998;
}

.share-whatsapp {
  background-color: #25d366;
}

/* Subtle Styling for Buttons and Interactions */
button {
  background-color: #2c8cff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005f96;
}

/* Minimal Design */
footer p {
  color: #666;
  font-size: 0.8em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .receipt-tool-container {
    width: 90%;
    padding: 15px;
  }

  .mood-selection {
    flex-direction: column;
    gap: 10px;
  }

  .share-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
