/* Base page styling */
body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  margin: 0;
  color: #222;
}

/* Header */
header {
  background: #1e90ff;
  color: white;
  text-align: center;
  padding: 1em 0;
}

.tagline {
  font-style: italic;
  color: #d3e8ff;
  padding-top: 0.5em;
}

/* Colored sections */
.color-section {
  padding: 1em;
  margin: 1em;
  border-radius: 10px;
}

.green { background: #e8ffe8; }
.blue { background: #e8f3ff; }
.yellow { background: #fffde8; }
.orange { background: #fff3e0; }
.gray { background: #f0f0f0; }

/* Lists */
ul { 
  list-style-type: disc; 
  padding-left: 20px; 
}

.deal-breakdown li {
  margin-left: 20px;
  list-style-type: square;
}

.deal-notes li {
  margin-left: 40px;
  list-style-type: circle;
  font-size: 0.9em;
  color: #444;
}

/* Text areas + buttons */
textarea {
  width: 100%;
  height: 80px;
  margin-top: 0.5em;
}

button {
  margin-top: 0.5em;
  padding: 0.5em 1em;
  background: #1e90ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #0077e6;
}

/* Top navigation */
.topnav {
  position: sticky;
  top: 0;
  background: #ffffff;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  gap: 1em;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

.topnav a {
  text-decoration: none;
  color: #1e90ff;
  font-weight: bold;
}

.topnav a:hover {
  text-decoration: underline;
}

/* CLEAN NEW DEAL LAYOUT */
.deal-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.deal-wrapper {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.deal-left {
  flex: 1;
}

.deal-right img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* Deal headings */
.deal-store {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 3px;
}

.deal-title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 4px 0;
}
