/* Custom styles for the application */

body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f7f7f7;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Sticky Favorites Bar */
#favoritesBar {
    position: sticky;
    top: 0;
    z-index: 1020; /* Above most content, below modals */
    background-color: #e9ecef; /* Light grey background for visibility */
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px; /* Add some space below the sticky bar */
}

#favoritesList .list-group-item-action {
    cursor: grab;
}

#favoritesList .ui-sortable-helper {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.ui-state-highlight {
    height: 30px;
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
}

.dir-item .favicon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}