/* Container Styling */
.mediation-container {
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto; 
    padding: 20px 15px 80px 15px; /* Add extra bottom padding for scrolling */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

.mediation-status {
    background: #f1f1f1;
    border-radius: 5px;
    font-size: 1rem;
    margin: 16px auto;
    text-align: center;
    font-weight: bold;
    padding: 12px 18px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mediation Form Card */
.mediation-card {
    background: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    align-content: space-evenly;
    margin: 0 auto;
}

.mediation-card h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styling */
.mediation-container h1 {
    font-size: 2rem;
    color: #102a4d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Welcome Message */
.mediation-container p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: black;
}

/* Table Styling */
.mediation-table {
    width: 100%; 
    max-width: 1200px;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    table-layout: auto;
}

/* Table Header */
.mediation-table th {
    background-color: #007bff;
    color: white;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Table Rows */
.mediation-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Alternating Row Colors */
.mediation-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover Effect */
.mediation-table tr:hover {
    background-color: #e0e0e0;
    transition: 0.3s;
}

/* Accept Negotiation/Mediation Button */
.accept-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #1c7030;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
  }
  
  .accept-btn:hover {
    text-decoration: underline;
  }  

  /* View summary/mediation */
  .view-link {
    color: #102a4d;
    text-decoration: none;
    font-weight: bold;
}

  .view-link:hover {
      text-decoration: underline;
  } 

  /* Complete feedback */
  .complete-link {
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
}

  .complete-link:hover {
      text-decoration: underline;
  } 

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.pagination-link {
    padding: 8px 16px;
    background-color: #102a4d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pagination-link:hover {
    background-color: #0d2340;
}

.page-info {
    font-weight: bold;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mediation-container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mediation-container h1 {
        font-size: 1.5rem;
        padding: 0;
        margin-bottom: 20px;
    }

    .mediation-container h2 {
        font-size: 1.3rem;
        padding: 0;
        margin: 30px 0 20px 0;
    }

    .mediation-table {
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
        background: transparent;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .mediation-table thead {
        display: none;
    }
    
    .mediation-table tbody {
        display: flex;
        flex-direction: row;
        gap: 15px;
        width: max-content;
        padding-bottom: 10px;
        margin: 0 auto;
    }
    
    .mediation-table tr {
        display: flex;
        flex-direction: column;
        min-width: 280px;
        max-width: 320px;
        flex-shrink: 0;
        margin-bottom: 0;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        box-sizing: border-box;
        scroll-snap-align: start;
    }
    
    .mediation-table td {
        display: block;
        width: 100%;
        padding: 6px 0;
        text-align: left;
        border: none;
        position: relative;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .mediation-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #102a4d;
        display: block;
        margin-bottom: 4px;
        font-size: 0.85rem;
    }
    
    .mediation-table td:last-child {
        border-top: 1px solid #eee;
        text-align: center;
        padding-top: 15px;
        margin-top: 10px;
    }

    .mediation-table td:last-child::before {
        display: none;
    }

    .mediation-table .view-link,
    .mediation-table .accept-btn,
    .mediation-table .complete-link {
        display: inline-block;
        background-color: #102a4d;
        color: white;
        padding: 12px 24px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        width: auto;
        min-width: 200px;
    }

    .mediation-table .view-link:hover,
    .mediation-table .accept-btn:hover,
    .mediation-table .complete-link:hover {
        background-color: #0d2340;
        text-decoration: none;
    }

    .mediation-status {
        font-size: 1rem;
        padding: 15px;
        margin: 20px 0;
    }
}

/* Tablet/iPad size - wrap cards */
@media (min-width: 769px) and (max-width: 1024px) {
    .mediation-table {
        overflow: visible;
    }

    .mediation-table thead {
        display: none;
    }

    .mediation-table tbody {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }

    .mediation-table tr {
        display: flex;
        flex-direction: column;
        width: calc(50% - 10px);
        min-width: 280px;
        max-width: 350px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        box-sizing: border-box;
    }

    .mediation-table td {
        display: block;
        width: 100%;
        padding: 6px 0;
        text-align: left;
        border: none;
        word-wrap: break-word;
    }

    .mediation-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #102a4d;
        display: block;
        margin-bottom: 4px;
        font-size: 0.85rem;
    }

    .mediation-table td:last-child {
        border-top: 1px solid #eee;
        text-align: center;
        padding-top: 15px;
        margin-top: 10px;
    }

    .mediation-table td:last-child::before {
        display: none;
    }

    .mediation-table .view-link,
    .mediation-table .accept-btn,
    .mediation-table .complete-link {
        display: inline-block;
        background-color: #102a4d;
        color: white;
        padding: 12px 24px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
    }
}
<<<<<<< HEAD
}

.signature-status {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 10px 0;
    color: #475569;
}

.signature-form-inline {
    margin-top: 15px;
}

.form-group-inline {
    margin-bottom: 15px;
}

.sig-label-small {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f2a49;
    margin-bottom: 6px;
}

.sig-input-small {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.sig-input-small:focus {
    outline: none;
    border-color: #3b82f6;
}

.sig-hint-small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 0.85rem;
}

.form-actions-inline {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.btn-link-small {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-link-small:hover {
    text-decoration: underline;
}

.btn-sign-small {
    padding: 10px 20px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sign-small:hover {
    background: #059669;
    transform: translateY(-1px);
}
.conversation-cta--success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.conversation-cta--success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
=======


>>>>>>> 2fa-clean
