/* counter_ */
.main-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .counter-container {
      flex: 2;
      min-width: 300px;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }
    .morphology-box {
      flex: 1;
      min-width: 250px;
      background-color: #ffffff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      font-size: 14px;
    }
    .counter-title {
      font-size: 24px;
      color: #49a248;
      margin-bottom: 20px;
      text-align: center;
    }
    .counter-stats {
      font-size: 20px;
      margin-bottom: 10px;
      text-align: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .counter-stats span {
      font-weight: bold;
      color: #49a248;
    }
    #text-input {
      width: 100%;
      height: 300px;
      padding: 15px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      resize: none;
      box-sizing: border-box;
    }
    #morphology-result {
      white-space: pre-wrap;
      color: #555;
    }
    table.word-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }
    table.word-table th, table.word-table td {
      padding: 6px 10px;
      border: 1px solid #ccc;
      text-align: left;
    }
    table.word-table th {
      background-color: #f0f0f0;
    }
    table.word-table td.word-cell {
      cursor: pointer;
    }
    table.word-table td.word-cell:hover {
      background-color: #e8f5e9;
    }
    .highlight {
      background-color: yellow;
    }
    .seo-judge {
      margin-top: 20px;
      padding: 15px;
      background-color: #f5fff5;
      border: 1px solid #c8e6c9;
      border-radius: 6px;
      font-size: 16px;
      text-align: center;
      color: #388e3c;
      font-weight: bold;
    }
    @media screen and (max-width: 768px) {
      .main-container {
        flex-direction: column;
      }
    }
/* _counter */