.wish-container {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.wish-form .char-counter {
    text-align: right;
    font-size: 0.85em;
    color: #999;
    margin-top: 4px;
}

/* 图片上传区 */
.image-upload-area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.image-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item .remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.image-add-btn {
    width: 80px;
    height: 80px;
    border: 2px dashed #d0d5dd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #98a2b3;
    font-size: 20px;
    margin: 0;
    background: #f9fafb;
    transition: all 0.2s;
}

.image-add-btn:hover {
    border-color: #007bff;
    color: #007bff;
    background: #eff6ff;
}

/* 许愿卡片 */
.wish-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.wish-card .wish-content {
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.wish-card .wish-images {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.wish-card .wish-images img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #eee;
}

.wish-card .wish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: #999;
}

.wish-card .wish-reply {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9em;
}

.wish-card .wish-reply .reply-label {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 4px;
}

/* 状态标签 */
.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: 500;
}

.status-badge.status-PENDING { background: #fff3cd; color: #856404; }
.status-badge.status-ACCEPTED { background: #d4edda; color: #155724; }
.status-badge.status-IN_PROGRESS { background: #cce5ff; color: #004085; }
.status-badge.status-LAUNCHED { background: #d1ecf1; color: #0c5460; }
.status-badge.status-IGNORED { background: #f0f0f0; color: #6c757d; }
