/**
 * Learn Page Advanced Features Styles
 * Comprehensive styling for all advanced features
 */

/* ============================================
   GLOBAL SEARCH
   ============================================ */

.global-search-bar {
    position: relative; margin-left: auto; margin-right: 1rem; }

.search-container {
    display: flex; align-items: center; background: white; border: 2px solid var(--border-color); border-radius: 25px; padding: 0.5rem 1rem; min-width: 300px; transition: all 0.3s ease; }

.search-container:focus-within {
    border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1); }

.search-container i {
    color: var(--text-secondary); }

#global-search-input {
    flex: 1; outline: none; font-size: 0.9rem; }

.clear-search-btn {
    cursor: pointer; }

.search-results {
    top: calc(100% + 10px); left: 0; right: 0; z-index: 1000; max-height: 500px; overflow-y: auto; animation: slideDown 0.3s ease; }

@keyframes slideDown {
    from {
        opacity: 0; transform: translateY(-10px); }
}

.search-results-header {
    justify-content: space-between; border-bottom: 1px solid var(--border-color); font-weight: 600; }

.search-result-item {
    gap: 1rem; }

.result-icon {
    width: 40px; height: 40px; flex-shrink: 0; }

.result-content h4 {
    margin: 0 0 0.25rem; }

.result-type {
    text-transform: uppercase; letter-spacing: 0.5px; }

.no-results {
    text-align: center; }

.no-results i {
    margin-bottom: 1rem; }

.bookmarks-panel {
    flex-direction: column; }

.bookmark-tab.active {
    border-bottom-color: var(--primary-color); }

.bookmark-notification {
    bottom: 20px; }

.note-item p {
    line-height: 1.5; }

.note-editor-content {
    max-width: 800px; }

.note-content-input {
    resize: none; font-family: inherit; min-height: 300px; }

.note-editor-footer {
    border-top: 1px solid var(--border-color); }

.recommendations-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); margin-top: 2rem; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
}

