.review-form{
    background-color: #F3F3F3 !important;
    padding-left: 100px;
    padding-top: 100px;
}

.highlight {
  background-color: yellow;
  transition: background-color 0.5s ease-in-out;
}
.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #F3F3F3 !important; /* Light background color */
  }
  
  .table-custom th,
  .table-custom td {
    padding: 12px 15px;
    border: 1px solid #F3F3F3 !important;
  }
  
  .table-custom thead th {
    background-color: #343a40; /* Dark header background color */
    color: #ffffff;
  }
  
  .table-custom tbody tr:nth-of-type(even) {
    background-color: #F3F3F3 !important; /* Even row background color */
  }
  
  .table-custom tbody tr:hover {
    background-color: #F3F3F3 !important; /* Hover row background color */
  }
  
  .file-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
  }
  

  /* Common styles */

/* .container {
  display: flex;
  width: 100%;
} */

.half-page-container {
    flex: 3;
    /* Make the left side bigger */
    padding: 20px;
    background-color: #f0f0f0;
    /* Example background color */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    /* Add margin between the divs */
  }
  
  .full-width-container {
    flex: 2;
    /* Takes less space */
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    /* Adjust as needed */
    height: fit-content;
    overflow: scroll;
  }
  
  .centered-content {
    text-align: center;
  }
  
  .header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .divider {
    height: 2px;
    background-color: #ddd;
    margin-bottom: 20px;
  }
  
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33.333% - 20px);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007BFF;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
  }
  
  .containerDivTwo {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .editor-container {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    transition: all 0.3s ease;
  }
  
  .editor-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
  }
  
  .notes-container {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 20px;
    /* Add some margin at the top */
  }
  
  .notes-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
  }
  
  .note {
    margin-bottom: 10px;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .note div {
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  /* .button {
      display: inline-block;
      padding: 10px 20px;
      margin-top: 10px;
      background: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    
    .button:hover {
      background: #0056b3;
    } */
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .invite-dmc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .invite-input {
    padding: 10px;
    font-size: 1em;
    width: 300px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
  }
  
  .invite-input:focus {
    border-color: #007bff;
  }
  
  .invite-button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .invite-button:hover {
    background-color: #0056b3;
  }
  

  .home-page-container {
    padding: 20px;
  }
  
  .header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .divider {
    height: 2px;
    background-color: #ddd;
    margin-bottom: 20px;
  }
  
  .filter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .filter-dropdown {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 10px;
  }
  
  .filter-button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .filter-button:hover {
    background-color: #0056b3;
  }
  
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33.333% - 20px);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007BFF;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
  }
  

  .dmc-forms-container {
    text-align: center;
    padding: 20px;
  }
  
  .header {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .divider {
    width: 100%;
    height: 4px;
    background-color: black;
    margin-bottom: 20px;
  }
  
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  