.dpc-eee480f5-wrapper {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: inherit;
    width: 200%; /* Force 2x width */
    max-width: 800px; /* Sensible upper bound */
    display: flex;
    flex-direction: column;
}

.dpc-eee480f5-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.dpc-eee480f5-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.dpc-eee480f5-item {
    flex: 2;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 0;
}

.dpc-eee480f5-qty {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 0;
}

.dpc-eee480f5-btn-delete {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
    flex-shrink: 0;
}

.dpc-eee480f5-btn-delete:hover {
    background: #dc2626;
}

.dpc-eee480f5-actions {
    margin-bottom: 20px;
}

.dpc-eee480f5-btn-add {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px dashed #d1d5db;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.dpc-eee480f5-btn-add:hover {
    background: #e5e7eb;
    color: #1f2937;
    border-color: #9ca3af;
}

.dpc-eee480f5-btn-calc {
    background-color: #461619 !important;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    margin-top: auto;
    transition: background-color 0.2s;
}

.dpc-eee480f5-btn-calc:hover {
    background-color: #2d0e10 !important;
}

.dpc-eee480f5-result {
    margin-top: 20px;
    padding: 15px;
    background: #FDF2F2;
    border-radius: 6px;
    color: #D1455C;
    width: 100%;
    box-sizing: border-box;
}

.dpc-eee480f5-output strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
}