.mc-candle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mc-candle {
    display: inline-block;
    width: 120px;
    text-align: center;
    margin: 10px;
}

.mc-candle-shape-options {
    display: flex;
    gap: 10px;
}
.mc-candle-shape-options label {
    cursor: pointer;
}
.mc-candle-shape-options img {
    width: 60px;
    height: 100px;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.2s;
}
.mc-candle-shape-options input {
    display:none;
}
.mc-candle-shape-options input:checked + img {
    border-color: #000;
}

#mc-candle-preview {
    margin-top: 20px;
    text-align: center;
}
#mc-preview-svg {
    width: 100px;
    height: 200px;
}

#mc-candle-form .footer-wrapper{
    display:flex;
    margin:10px 0;
}

.spinner {
    display:inline-block;
    margin: 10px;
    width: 30px;
    height: 30px;
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}