body {
  font-family: Courier, monospace;
  color: #212529;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #a81616;
  padding: 0.75rem 0;
}

#nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.user-handle {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 20px;
}

#user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

#nav-text {
  color: white;
  text-align: center;
  flex-grow: 1;
  font-size: 1.8rem;
}

#enter-post.card {
  border: 1.5px solid black;
  border-radius: 10px;
}

#post-area textarea.form-control {
  resize: none;
  border-radius: 0.5rem;
  border: 1px solid black;
}

button.btn.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.4rem 1.2rem;
}

button.btn.btn-primary:hover {
  background-color: #0056b3;
}

.d-flex .card {
  border: 1.5px solid black;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: none;
}

.d-flex .card:hover {
  transform: none;
  box-shadow: none;
}

.card-body .text-muted {
  font-size: 0.85rem;
}

.user-post-info {
    display: flex;
    align-items: center;       
    gap: 0.75rem;             
    flex-wrap: wrap; 
}

#user-post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;        
}

.user-post-info p {
    margin: 0;            
}

.user-name,
.user-id,
.date-time-posted {
    display: inline-block;
    margin-right: 0.5rem;    
    font-size: 0.9rem;
}

.user-name {
    font-weight: 600;
}

.user-id,
.date-time-posted {
    color: #6c757d; 
}

.user-post-content {
    margin-top: 0.5rem;
    white-space: pre-wrap;
}
