/* 編輯模式容器 */
.edit-mode-container {
    max-width: 100%;
    padding: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.edit-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* 預覽區域 */
.flex-preview-container {
    margin: 20px auto;
    max-width: 400px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}

/* 編輯區域 */
.edit-sections {
    margin-top: 30px;
}

.edit-section {
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.edit-section h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.edit-content {
    margin-top: 10px;
}

.edit-content input[type="text"],
.edit-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.edit-content textarea {
    min-height: 100px;
    resize: vertical;
}

.edit-content input[type="color"] {
    width: 50px;
    height: 40px;
    margin-bottom: 10px;
}

/* 按鈕樣式 */
.save-btn, #preview-btn, #save-all-btn, #exit-edit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 5px;
}

.save-btn:hover, #preview-btn:hover, #save-all-btn:hover {
    background-color: #45a049;
}

#exit-edit-btn {
    background-color: #f44336;
}

#exit-edit-btn:hover {
    background-color: #d32f2f;
}

.action-buttons {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 50px;
}

/* 響應式設計 */
@media (max-width: 600px) {
    .edit-section {
        padding: 10px;
    }

    .save-btn, #preview-btn, #save-all-btn, #exit-edit-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}