#lowbay-trigger {
    transition: all 0.2s ease;
}
#lowbay-trigger {
    background: #000;
    color: #deff9a;
    padding: 15px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

#diseno-wrapper {
    display: none;
    width: 100%;
    margin: 20px 0;
    border: 4px solid #000;
    padding: 20px;
    background: #fff;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.price-badge {
    background: #000;
    color: #deff9a;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.btn-v-container {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.btn-v {
    padding: 10px 2px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 10px;
    background: #f9f9f9;
    font-weight: bold;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
}

.btn-v.active {
    background: #00e676 !important;
    color: #000 !important;
    border: 3px solid #00c853 !important;
    box-shadow: 0 0 12px rgba(0,230,118,.7);
    transform: scale(1.05);
}

#canvas-holder {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border: 1px solid #eee;
    background: #fdfdfd;
}

.action-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    border-radius: 4px;
}

.del-btn {
    background: #ff4136 !important;
    margin-top: 15px;
}

.save-btn {
    background: #2ecc40 !important;
    margin-top: 25px;
    font-size: 16px;
    border: 2px solid #1d8a2a;
}

.lowbay-modal-config-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.lowbay-onfig-titulo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.lowbay-config-titulo {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0;
    font-family: sans-serif;
}

.lowbay-onfig-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tamano-texto {
    font-style: italic;
    color: #666;
    font-size: 13px;
    margin: 8px 0;
    font-family: sans-serif;
}

.status-box {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 18px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 10px;
    color: #ffffff;
}

.status-box.status-success {
    background-color: #00e676;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
}

.status-box.status-danger {
    background-color: #e50000;
    align-items: flex-start;
    gap: 8px;
}

.status-box .status-icon {
    font-size: 16px;
    font-weight: bold;
}

.dot { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 1px solid #ddd; display: inline-block; margin: 3px; }

.font-select { width: 100%; padding: 10px; margin-top: 10px; border: 1px solid #ccc; border-radius: 4px; }

.lowbay-config-close:focus,
.lowbay-config-close:active,
.lowbay-popup-close:focus,
.lowbay-popup-close:active {
    outline: none;
    box-shadow: none;
}

.lowbay-config-close {
    position: relative;
    z-index: 9999;
    line-height: 20px;
    text-align: center;
    user-select: none;
}

.lowbay-config-close * {
    pointer-events: none;
}

.lowbay-config-close,
.lowbay-popup-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s;
}

.lowbay-config-close:hover,
.lowbay-popup-close:hover {
    background: rgba(0,0,0,0.08);
}

#img-up {
    width: 100%;
    padding: 0;
    border: none;
    font-size: 0;
    appearance: none;
    -webkit-appearance: none;
}

#img-up::file-selector-button {
    width: 100%;
    height: 52px;
    font-size: 16px;
    font-weight: 700;
    background: #222;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) and (orientation: portrait) {

    #diseno-wrapper {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        padding: 8px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    #canvas-holder {
        transform: scale(0.86);
        transform-origin: top center;
        margin-bottom: -70px;
    }

}












