body {
  background-color: #f4f6f9;
  font-family: 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.feed-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
}

.feed-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.feed-card small {
  color: #888;
}

footer {
  margin-top: auto;
  background: #fff;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}

#clientFields {
    display: none;
    transition: all 0.3s ease;
}
#contractorFields {
    display: none;
    transition: all 0.3s ease;
}



.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    display: none; align-items: center; justify-content: center; z-index: 9999;
}
.modal-box {
    background: #fff; padding: 24px; border-radius: 8px; max-width: 400px; width: 90%;
    text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,.3);
}
.modal-icon { font-size: 48px; color: #dc3545; margin-bottom: 12px; }
