/* Department Image Styles */
.department-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.temaun-thumb-department {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 5px;
}

.department-image-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 10px auto;
}

.no-image-placeholder .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #999;
    margin-bottom: 5px;
}

.no-image-label {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* Media Upload Styles */
.media-upload-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.media-upload-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.media-upload-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.image-preview {
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.image-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.field-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-style: italic;
} 