.file-search {
    display: grid;
    grid-template-columns: 18px minmax(120px, 1fr) 28px;
    align-items: center;
    flex: 1 1 420px;
    min-width: 180px;
    max-width: 720px;
    min-height: 30px;
    gap: 8px;
    padding: 0 6px 0 10px;
    border: 1px solid #252a31;
    border-radius: 5px;
    background: #0f1419;
    color: #87919d;
}

.file-search:focus-within {
    border-color: #356f8f;
    box-shadow: 0 0 0 2px rgb(74 163 255 / 14%);
}

.file-search .fa-magnifying-glass {
    width: 14px;
    color: #7c8793;
}

.file-search input {
    width: 100%;
    min-width: 0;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #edf1f5;
    font: inherit;
    outline: none;
}

.file-search input::placeholder {
    color: #6f7b88;
}

.file-search-clear {
    display: grid;
    width: 24px;
    min-width: 24px;
    min-height: 24px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #87919d;
}

.file-search-clear:hover,
.file-search-clear:focus-visible {
    background: #20262d;
    color: #d9e2ec;
}

.file-search-clear .fa-xmark {
    width: 12px;
}

.git-branch-selector {
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr);
    align-items: center;
    flex: 0 1 240px;
    min-width: 170px;
    gap: 8px;
    color: #87919d;
    font-size: 12px;
}

.git-branch-selector span {
    font-weight: 650;
}

.git-branch-selector select {
    width: 100%;
    min-width: 0;
    min-height: 30px;
    padding: 0 9px;
    border: 1px solid #252a31;
    border-radius: 5px;
    background: #0f1419;
    color: #edf1f5;
}

.git-branch-selector select:focus {
    outline: none;
    border-color: #356f8f;
    box-shadow: 0 0 0 2px rgb(74 163 255 / 14%);
}

.git-branch-selector select:disabled {
    opacity: .65;
}
