   .coping-tools-container {
    display: flex;
    justify-content: center; /* Center the content horizontally */
  }

  .coping-tools-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
  }

  .coping-tools-tile {
    width: calc(33.33% - 10px);
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.2s;
  }

  .coping-tools-tile:hover {
    transform: scale(1.05);
  }

  .coping-tools-icon {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.5;
  }

  /* You can add specific styles for each tile if needed */
  .coping-tools-tile:nth-child(odd) {
    background-color: #f2f2f2;
  }

  .coping-tools-tile:nth-child(even) {
    background-color: #e0e0e0;
  }
  .jot-thoughts-text-area-box {
  width: 100%; /* Takes the full width of the container */
  height: 100vh; /* Takes the full height of the viewport */
  resize: none; /* Disables resizing */
  border: 4px solid #000; /* Thicker border */
  border-radius: 12px; /* Rounded corners */
  padding: 1em; /* Inner padding */
  box-sizing: border-box; /* To make sure padding and border are included in the total width and height */
  overflow: auto; /* Allows scrolling if the content exceeds the box size */

}