
body {
  background-color: #f5f6f8;
}

.app-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e4e8;
}

.post-card {
    border: 1px solid #999393;
    border-radius: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 230px;
}

.post-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.post-card .card-body {
  padding: 1.5rem 1rem;
}

.post-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f1f3;
}

.post-row:last-child {
  border-bottom: none;
}

.post-row.highlight-row {
  background-color: #eaf6ff;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 4px -12px;
}

.post-key {
  font-weight: 700;
  color: #000;
  text-align: left;
}
.company {
  font-size : 18px;
}


.post-value {
  color: #212529;
  text-align: right;
  word-break: break-word;
  font-size: 16px;
}

.post-row.highlight-row .post-key,
.post-row.highlight-row .post-value {
  color: #0d6efd;
}

#formWrapper .card-body {
  border-radius: 10px;
}
button#toggleFormBtn {
    /* color: purple; */
    background: #673de6;
    border: 1px solid #673de6;
    border-radius: 24px;
}
@media screen and (max-width: 480px) {
button#toggleFormBtn {
    width: 100%;
    text-align: center;
}
}
  