#bce-app {
    font-family: 'Cairo', sans-serif;
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    direction: rtl;
}

#bce-app table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.bce-row {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    display: block;
    background: #f9f9f9;
}

.bce-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bce-name {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    border-radius: 6px;
    border: 1px solid #ccc;
    height: 38px;
    line-height: 20px;
}

.bce-cost {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #aaa;
    font-size: 16px;
    text-align: right;
    direction: rtl;
}

.bce-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-top: -5px;
}

.bce-delete {
    color: #e74c3c;
    cursor: pointer;
}

.bce-rate {
    color: #555;
}

#bce-app input[type="number"] {
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Cairo', sans-serif;
}

#bce-app button {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 15px;
}

#bce-app button:hover {
    background: #005f8a;
}

#bce-bubble {
    position: fixed;
    top: 70px;
    right: 50%;
    transform: translateX(50%);
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.5s;
    pointer-events: none;
}

#bce-total-bottom {
    font-size: 22px;
    font-weight: bold;
    background: #e7f3ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
    border: 2px dashed #007cba;
    color: #007cba;
}

#bce-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
}