table img {
    max-width: 100px; /* 最大寬度 */
    max-height: 100px; /* 最大高度 */
    object-fit: cover; /* 保持圖片比例 */
    border-radius: 5px; /* 添加圓角（可選） */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 添加陰影效果 */
}

table td, table th {
    padding: 8px; /* 調整間距 */
}

table {
    border-collapse: collapse;
    width: 100%; /* 確保表格寬度適應頁面 */
}

h1 {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* 按鈕之間的間距 */
}

.action-buttons button {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-buttons button:hover {
    background-color: #f4f4f4;
}
.artwork-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.artwork-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* 預覽框統一樣式（避免用 JS 設 style） */
#editExpoImagePreview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
  #editExpoImagePreview .text-muted { display: inline-block; }