.jodit-wysiwyg {
  min-height: 200px !important;
  max-height: 200px;
}

.thumbnail-wrapper img {
  padding: 0px 10px;
  max-height: 100px;
  animation: fadeIn 0.5s ease-in-out;
}

table td {
  padding-left: 10px;
}

/* Image Gallery Item Styles */
.image-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.image-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.disabled-image {
    filter: grayscale(70%);
}

.image-roles {
    border-radius: 0 0 6px 6px;
    letter-spacing: 1px;
}

.image-legend {
    background-color: rgba(255,255,255,0.7);
    border-radius: 4px;
    padding: 5px;
    font-size: 11px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

