@font-face {
    font-family: 'Arial Narrow';
    src: url('arial-narrow.ttf') format('truetype');
}

@font-face {
    font-family: 'SF Mono';
    src: url('sf-mono-regular.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Narrow', sans-serif;
    background: #fff;
    color: #000;
    font-size: 13px;
    line-height: 1.6;
    padding: 16px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 0;
    border: none;
    padding: 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

h2 {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 8px;
    margin-top: 16px;
}

.header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.logo-section {
    flex-shrink: 0;
}

.instructions {
    flex: 1;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-top: 12px;
    text-align: right;
}

.instructions p {
    margin: 0;
}

.search-row {
    display: flex;
    gap: 4px;
    margin-top: 12px;
}

#searchInput {
    flex: 1;
    padding: 7px;
    border: 1px solid #000;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 13px;
    background: #fff;
    color: #000;
}

#searchInput:focus {
    outline: none;
    border: 2px solid #000;
}

#searchBtn {
    padding: 7px 10px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-family: 'SF Mono', monospace;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}

#searchBtn:hover {
    background: #f5f5f5;
}

.sites-section {
    margin-top: 16px;
}

#sitesList {
    list-style: none;
}

#sitesList li {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sitesList li:hover {
    background: #f5f5f5;
}

#sitesList li.highlighted {
    background: #e8e8e8;
}

#sitesList li.hidden {
    display: none;
}

.site-name {
    flex-grow: 1;
}

.site-url {
    color: #666;
    font-size: 11px;
    margin-left: 8px;
}

.remove-btn {
    background: none;
    border: 1px solid #999;
    padding: 2px 5px;
    cursor: pointer;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 11px;
    color: #999;
    margin-left: 8px;
}

.remove-btn:hover {
    color: #000;
    border-color: #000;
}

.add-site-section {
    margin-top: 20px;
}

.add-site-form {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
}

#siteName,
#siteUrl {
    flex: 1;
    padding: 7px;
    border: 1px solid #000;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 13px;
    background: #fff;
    color: #000;
}

#siteName:focus,
#siteUrl:focus {
    outline: none;
    border: 2px solid #000;
}

#addSiteBtn {
    padding: 7px 10px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 13px;
    cursor: pointer;
}

#addSiteBtn:hover {
    background: #f5f5f5;
}

footer {
    display: none;
}
