/* ==============================================
 *  Shared Stylesheet - styles.css
 *  🎨 Used by Katie & SAM dashboards
 *  @version 1.0.0 (2025-03-27)
 * ============================================== */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.container {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
}

p {
  font-size: 18px;
  color: #555;
}

.thought {
  font-style: italic;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background: #28a745;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #218838;
}

.deal-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  background-color: #fff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
