.bookmark-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 8px;
    flex-wrap: wrap;
}

.dark-theme .bookmark-controls {
    background: #292a2d;
}

.search-box {
    position: relative;
    flex: 2;
    min-width: 200px;
}

.sort-controls {
    position: relative;
    flex: 1;
    min-width: 150px;
}

.search-box input, .sort-controls select {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    box-sizing: border-box;
}

.sort-controls select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
    cursor: pointer;
}

.dark-theme .search-box input,
.dark-theme .sort-controls select {
    background: #3c4043;
    border-color: #5f6368;
    color: #e8eaed;
}

.search-box i, .sort-controls i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.dark-theme .search-box i,
.dark-theme .sort-controls i {
    color: #9aa0a6;
}

.search-box input:focus,
.sort-controls select:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.dark-theme .search-box input:focus,
.dark-theme .sort-controls select:focus {
    border-color: #8ab4f8;
    box-shadow: 0 0 0 2px rgba(138, 180, 248, 0.2);
}
