/* Entity Data View Styles */

.entity-state-badge {
    font-size: 0.85rem;
}

.field-display-container {
    min-height: 42px;
    background-color: var(--bs-white);
}

.rich-text-display img,
.markdown-display img {
    max-width: 100%;
    height: auto;
}

.metadata-label {
    color: var(--bs-gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.metadata-value {
    word-break: break-word;
}

/* State change notification */
.state-change-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--bs-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1050;
}

.state-change-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* State badges */
.state-badge-draft {
    background-color: var(--bs-gray-600);
}

.state-badge-review {
    background-color: var(--bs-info);
}

.state-badge-published {
    background-color: var(--bs-success);
}

.state-badge-archived {
    background-color: var(--bs-danger);
}

/* Content type icons */
.content-type-icon {
    margin-right: 8px;
    opacity: 0.7;
}
