.editor__component {
    height: 100%;
    max-width: 45.5em;
    background-color: #fff;
    border: 1px solid #e8e9ea;
    border-radius: .25em;
    flex-direction: column;
    flex: 1;
    padding: 1.25em 1.5em;
    display: flex;
    position: relative;
    box-shadow: 0 0 2em .5em rgba(27,41,42,.06);
}

#text-input {
    width: 100%;
    height: 300px; /* Updated height */
    border: none;
    outline: none;
    resize: none;
    font-size: 16px;
    line-height: 1.5;
    overflow-y: auto; /* Enable vertical scrolling */
}

.sidebar__component {
    width: 21.75em;
    max-height: 25em;
    background-color: #fff;
    border: 1px solid #e8e9ea;
    border-radius: .25em;
    flex-direction: column;
    padding: 1.25em 1.5em 1em;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 2em .5em rgba(27,41,42,.06);
}

.keyword-columns {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.keyword-column {
    flex: 1 1 20%;
    padding: 5px;
    box-sizing: border-box;
}

.border {
    border: 1px solid #e2e8f0; /* gray-200 */
}

.ml-[25px] {
    margin-left: 25px;
}

.my-[20px] {
    margin-top: 20px;
    margin-bottom: 20px;
}

.color-dark-green {
    color: #065f46; /* Example green color */
}

.font-bold {
    font-weight: bold;
}

.text-[18px] {
    font-size: 18px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.md:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gap-2 {
    grid-gap: 8px;
}

.ml-[30px] {
    margin-left: 30px;
}

.md:ml-[0px] {
    margin-left: 0;
}

.md:text-center {
    text-align: center;
}

.mb-[20px] {
    margin-bottom: 20px;
}

.md:border-r {
    border-right: 1px solid #e2e8f0;
}

.mb-[10px] {
    margin-bottom: 10px;
}

.md:mb-[0px] {
    margin-bottom: 0;
}

.color-grey {
    color: #718096; /* grey color */
}

.text-[14px] {
    font-size: 14px;
}

/* Container for the entire results section */
.p-[20px] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Spacing around the entire results container */
    width: 100%;
}

/* Styling for the results grid */
.grid {
    text-align: center;
    width: auto; /* Adjust width as needed */
    margin: 0 auto; /* Centering the grid */
}

/* Styling for each result item */
.md:border-r {
    padding: 10px; /* Spacing within each result box */
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(5, 1fr); /* Adjust columns for larger screens */
    }
}
.bold {
  font-weight: bold;
}