/* Charm preview modal enhancements - icon-based zoom controls */

/* Zoom icon buttons - small, subtle */
.zoom-icon-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 2px;
}

.zoom-icon-btn:hover {
    background: #e0e0e0;
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.zoom-icon-btn:active {
    transform: scale(0.95);
}

.zoom-icon-btn:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Edit icon button - consistent with zoom buttons, green accent */
.charm-edit-icon-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f5e9;
    border: 1px solid #4caf50;
    font-size: 16px;
    color: #4caf50;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 2px;
}

.charm-edit-icon-btn:hover {
    background: #c8e6c9;
    transform: scale(1.08);
    box-shadow: 0 2px 6px rgba(76,175,80,0.3);
}

.charm-edit-icon-btn:active {
    transform: scale(0.95);
}

.charm-edit-icon-btn:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}

/* Control group layout */
.charm-preview-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Responsive */
@media (max-width: 600px) {
    .zoom-icon-btn,
    .charm-edit-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
