
.jumbotron{
  background-color: #e67e22;
}

/* Styling code Below was generated using Claude */

body{
  padding-top: 80px;
  word-wrap: break-word;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img{
  height: 200px;
}

.id{
  display: none;
}

/* Contact Cards Styling */
ul.messages {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

li.message {
  list-style-type: none;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

li.message:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Name section - highlighted */
li.message span:nth-child(1),
li.message span:nth-child(2) {
  font-weight: bold;
  font-size: 1.2em;
  color: #2c3e50;
  display: inline;
}

li.message span:nth-child(1)::after {
  content: " ";
}

/* Email */
li.message span:nth-child(3) {
  color: #3498db;
  font-size: 0.95em;
  word-break: break-all;
}

li.message span:nth-child(3)::before {
  content: "✉ ";
  color: #7f8c8d;
}

/* Phone */
li.message span:nth-child(4) {
  color: #555;
  font-size: 0.95em;
}

li.message span:nth-child(4)::before {
  content: "☎ ";
  color: #7f8c8d;
}

/* Company */
li.message span:nth-child(5) {
  color: #27ae60;
  font-weight: 600;
  font-size: 1em;
  margin-top: 5px;
}

li.message span:nth-child(5)::before {
  content: "🏢 ";
}

/* Event */
li.message span:nth-child(6) {
  color: #8e44ad;
  font-size: 0.9em;
  font-style: italic;
}

li.message span:nth-child(6)::before {
  content: "📍 ";
}

/* Spark */
li.message span:nth-child(7) {
  color: #e67e22;
  font-size: 0.9em;
  padding: 8px;
  background: #fef5e7;
  border-radius: 6px;
  margin-top: 5px;
}

li.message span:nth-child(7)::before {
  content: "💡 ";
}

/* Follow-ups */
li.message span:nth-child(8) {
  color: #c0392b;
  font-size: 0.9em;
  padding: 8px;
  background: #fadbd8;
  border-radius: 6px;
  margin-top: 5px;
}

li.message span:nth-child(8)::before {
  content: "✓ ";
  font-weight: bold;
}

/* Action icons */
li.message span:nth-child(10),
li.message span:nth-child(11) {
  position: absolute;
  top: 15px;
  cursor: pointer;
  font-size: 1.3em;
  transition: all 0.2s ease;
}

li.message span:nth-child(10) {
  right: 50px;
}

li.message span:nth-child(10) i {
  color: #f39c12;
}

li.message span:nth-child(10) i:hover {
  color: #f1c40f;
  transform: scale(1.2);
}

li.message span:nth-child(11) {
  right: 15px;
}

li.message span:nth-child(11) i {
  color: #95a5a6;
}

li.message span:nth-child(11) i:hover {
  color: #e74c3c;
  transform: scale(1.2);
}

/* Form Card Styling */
h2 {
  color: #2c3e50;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

form {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

form input {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: #fafafa;
}

form input:focus {
  outline: none;
  border-color: #3498db;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Make spark and followups full width */
form input[name="spark"],
form input[name="followups"] {
  grid-column: 1 / -1;
}

form button {
  grid-column: 1 / -1;
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

form button:active {
  transform: translateY(0);
}

/* Well card styling */
.well {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  background: #ffffff;
}

.well h3 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  ul.messages {
    grid-template-columns: 1fr;
  }
  
  form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  form input[name="spark"],
  form input[name="followups"] {
    grid-column: 1;
  }
}