/**
 * Scanning Slideout Styles
 */

/* Scanning Slideout Panel */
#slideout_scanning {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 9998;
    overflow-y: auto;
}

#slideout_scanning.slideout_scanning_open {
    right: 0;
}

/* Scan Queue Item */
.scan_queue_item {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.scan_queue_item_failed {
    cursor: pointer;
}

.scan_queue_item_failed:hover {
    background-color: #f0f7ff;
}

.scan_queue_item_name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    word-break: break-all;
}

.scan_queue_item_info {
    font-size: 11px;
    color: #888;
    margin-top: 3px;
}
