#search-container {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: transparent;
    position: relative;
}

#search-input {
    height: 40px;
    flex-grow: 1;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #3e4451;
    background-color: #282c34;
    color: #D4D4D4;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#search-input:focus {
    outline: none;
    box-shadow: none;
}

#search-button {
    padding: 5px 20px;
    font-size: 14px;
    background-color: #4b5363;
    color: #D4D4D4;
    border: none;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
}

.search-count {
    color: #8db472;
    font-weight: 500;
    margin-right: 4px;
}

.highlighted-line {
    background-color: rgba(255, 255, 0, 0.2);
}