#pcc-calculator {
    max-width: 450px;
    margin: 30px auto;
    padding: 25px;
    border: 2px solid #FDB100;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: "Tahoma", Arial, sans-serif;
    text-align: center;
    direction: rtl;
}

#pcc-calculator h2 {
    margin-bottom: 10px;
    color: #FDB100;
}

#pcc-calculator .pcc-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

#pcc-calculator label {
    display: block;
    text-align: right;
    margin-top: 12px;
    font-weight: bold;
}

#pcc-calculator input,
#pcc-calculator select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
}

#pcc-calculator button {
    margin-top: 20px;
    background-color: #FDB100;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: 0.3s;
}

#pcc-calculator button:hover {
    background-color: #FB9E00;
}

#pcc-calculator h3 {
    margin-top: 25px;
    font-size: 18px;
    color: #2d7a36;
    background: #e6f7eb;
    padding: 12px;
    border-radius: 8px;
}
#pcc-calculator .pcc-extra-desc {
    margin-top: 15px;
    padding: 15px;
    background: #fff8d6;       /* أصفر فاتح */
    border: 1px solid #f1c40f; /* أصفر أغمق */
    border-radius: 6px;
    font-size: 14px;
    color: #5a4a00;
    text-align: right;
    line-height: 1.7;
}
#pcc-calculator .pcc-extra-desc ul {
    margin: 10px 20px;
    padding: 0;
    list-style-type: disc;
}
#pcc-calculator .pcc-extra-desc strong {
    font-size: 15px;
    color: #8a6d00;
}

/* أزرار التصدير */
.pcc-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.pcc-btn-print {
    background-color: #007cba;
    color: white;
}

.pcc-btn-pdf {
    background-color: #dc3545;
    color: white;
}

.pcc-btn:hover {
    opacity: 0.8;
}

/* تصميم التقرير */
.pcc-report-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

.pcc-header {
    text-align: center;
    border-bottom: 2px solid #007cba;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.pcc-logo {
    max-width: 150px;
    max-height: 80px;
    margin-bottom: 15px;
}

.pcc-company-name {
    color: #007cba;
    margin: 10px 0;
    font-size: 24px;
}

.pcc-report-details {
    margin: 30px 0;
}

.pcc-detail-item {
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-right: 4px solid #007cba;
    font-size: 16px;
}

.pcc-total {
    background-color: #e8f4f8;
    font-size: 20px;
    border-right-color: #28a745;
}

.pcc-detail-desc {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.pcc-detail-desc ul {
    margin: 10px 0;
    padding-right: 20px;
}

.pcc-detail-desc li {
    margin: 5px 0;
}

.pcc-report-date {
    margin: 20px 0;
    text-align: left;
    color: #666;
}

.pcc-footer {
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #666;
}

.pcc-footer a {
    color: #007cba;
    text-decoration: none;
}

@media print {
    body * {
        visibility: hidden;
    }
    
    #pcc-report, #pcc-report * {
        visibility: visible;
    }
    
    #pcc-report {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        display: block !important;
    }
}