/* Postdetails styles: simple comments added by me to explain sections. */

   .post-comments {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .post-comments h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .comment {
    background: #F6F3F6;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px #A68CA5;
    max-width: 600px;
    width: 100%;
    word-wrap: break-word;
    margin-bottom: 15px;
  }
  
  .comment strong {
    font-size: 16px;
    color: #A68CA5;
    margin-bottom: 5px;
    display: block;
  }
  
  .comment p {
    font-size: 14px;
    color: #DCD1DB;
    margin: 0;
  }
  
  
  .post-comments form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 600px;
  }
  
  .post-comments textarea {
    padding: 12px;
    border: 1px solid #DCD1DB;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
  }
  
  .post-comments button {
    padding: 12px;
    background-color: #A68CA5;
    color: #F6F3F6;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .post-comments button:hover { background-color: #A68CA5; }
  
  
  .finish-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .input-group {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .creator-form input[type="text"],
  .creator-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #DCD1DB;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .creator-form textarea { min-height: 150px; resize: vertical; }
  
  .submit-button {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    background-color: #DCD1DB;
    color: #F6F3F6;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
  }
  .submit-button:hover { background-color: #A68CA5; }
  
  
  .tag-section { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin:6px 0 14px; }
  
  .tag-label{
    font-weight:700;
    color:#5a3b56;
    margin-right:4px;
  }
  
  .tag-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    list-style:none;
  }
  
  .tag{
    --chip-bg:#F6F3F6;
    --chip-text:#5a3b56;
    --chip-border:#DCD1DB;
    --chip-shadow:0 4px 10px rgba(166,140,165,.35);
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    border-radius:999px;
    background:var(--chip-bg);
    color:var(--chip-text);
    border:1px solid var(--chip-border);
    box-shadow:var(--chip-shadow);
    font-size:13px;
    font-weight:600;
    line-height:1;
    text-decoration:none;               
    max-width:180px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  }
  .tag:hover{ background:#fff; transform:translateY(-1px); box-shadow:0 6px 14px rgba(166,140,165,.35); }
  .tag:focus-visible{ outline:2px solid #A68CA5; outline-offset:2px; }
  .tag:active{ transform:none; box-shadow:0 3px 8px rgba(166,140,165,.25); }
  .tag--sm{ padding:4px 10px; font-size:12px; }
  
  
  .badge{
    display:inline-flex; align-items:center;
    padding:6px 10px; border-radius:999px;
    background:#E9D7E7; color:#452841;
    font-weight:700; font-size:12px; line-height:1;
    border:1px solid #D3BDD2;
  }
  