.summary-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .header-with-back {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .header-with-back h1 {
    font-size: 1.6rem;
    color: #102a4d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .back-btn {
    width: fit-content;
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 5px;
    background: white;
    color: #0056b3;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .back-btn i {
    margin-right: 8px;
  }
  
  .back-btn:hover {
    background: #9ac0ea;
  }
  
  /* Section Layout Matching Account Page */
  .summary-content {
    width: 100%;
    max-width: 900px;
  }
  
  .summary-section {
    padding: 20px;
    min-width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    margin-bottom: 24px;
  }
  
  .summary-section h2 {
    font-size: 1.3rem;
    color: #102a4d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .summary-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .summary-table th,
  .summary-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .summary-table th {
    background-color: #f1f1f1;
    font-weight: bold;
    width: 20%;
    vertical-align: top;
    color: #102a4d;
  }
  
  .summary-table th i {
    margin-right: 6px;
    color: #102a4d;
  }

  .conversation-details-box {
    background: white;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .signed-documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    background-color: #f9fbff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease-in-out;
  }
  
  .doc-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  
  .doc-link-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a73e8;
  }
  
  .doc-link-info i {
    color: #102a4d;
  }
  
  .doc-link {
    color: #1a73e8;
    text-decoration: none;
  }
  
  .doc-link:hover {
    text-decoration: underline;
    color: #1558b0;
  }
  
  /* Tags for conversation type */
  .tag {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    white-space: nowrap;
    background-color: #f1f3f4;
    color: #3c4043;
    border: 1px solid #dadce0;
  }
  
  .tag.primary {
    background-color: #e8f0fe;
    color: #1967d2;
    border-color: #c3d8fd;
  }
  
  .tag.tenant-side {
    background-color: #d4f5dc;
    color: #107c41;
    border-color:#b5e8c6;
  }
  
  .tag.landlord-side {
    background-color: #f3f2fc;
    color: #673ab7;
    border-color: #ddd6f3;
  }
  
  .tag.unknown {
    background-color: #fef7e0;
    color: #b26a00;
    border-color: #f4e5b8;
  }
  
