/* @🍮 */
/* === 自定义和教程页面样式 === */

#customize-screen .icon-custom-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

#customize-screen .icon-custom-item:last-child {
    border-bottom: none;
}

#customize-screen .icon-preview {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

#customize-screen .icon-details {
    flex-grow: 1;
}

#customize-screen .icon-details p {
    margin: 0 0 8px 0;
    font-weight: 600;
}

#customize-screen .icon-details input {
    width: calc(100% - 70px);
}

#customize-screen .reset-icon-btn {
    background: #e0e0e0;
    color: #555;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.tutorial-item {
    margin-bottom: 15px;
    border: 1px solid #fce4ec;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff8fa;
}

.tutorial-header {
    padding: 12px 18px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tutorial-header::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tutorial-item.open .tutorial-header::after {
    transform: rotate(180deg);
}

.tutorial-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
    padding: 0 10px;
}

.tutorial-item.open .tutorial-content {
    padding: 10px 10px;
    max-height: 5000px;
}

.tutorial-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
