/**
 * Log system styles.
 */

.log-content {
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.6;
    padding: 15px;
    border-radius: 4px;
}

.selected-characters-list,
.selected-tags-list {
    min-height: 40px;
    padding: 10px;
    border-radius: 4px;
}

.selected-character {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.autocomplete-dropdown {
    position: absolute;
    z-index: 1000;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
    /* Theme will handle hover styling */
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.form-check-group {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    background-color: #f8f9fa;
}

.form-check {
    margin-bottom: 5px;
}