body {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    background-color: #f5f5f5;
  }

  .containerbody {
    margin: 5%;
  }

  .search-bar {
    display: flex;
    align-items: center;
    border: 2px solid black;
    border-radius: 30px;
    padding: 5px 15px;
  }

  .search-bar input {
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    margin-right: 10px;
  }

  .container {
    display: flex;
    height: calc(100vh - 80px);
    padding: 20px;
    gap: 20px;
  }

  .panel {
    background: #d3d3d3;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    border-radius: 10px;
  }

  .panel h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .task {
    background: white;
    border: 1px solid black;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
  }

  .task h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
  }

  .task p {
    font-size: 12px;
    margin: 5px 0 0;
  }

  .edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .editor input, .editor textarea {
    width: 90%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 14px;
    background: white;
  }

  .editor-buttons {
    display: flex;
    justify-content: space-between;
  }

  .editor-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
    border: 2px solid #1e2a38;
    cursor: pointer;
    background: white;
  }

  .editor-buttons button.save {
    background: #1e2a38;
    color: white;
  }

  .editor-buttons button:hover {
    background-color: #7a90a9;
  }
  .editor-buttons button.save:hover {
    background-color: #2e3e50;
  }
  