/* Smart Callbox Frontend Styles */
.smart-callbox {
    direction: rtl;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-right-width: 5px; /* Width is static, color is dynamic */
    border-right-style: solid;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}
.smart-callbox h3 {
    color: #212529;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}
.smart-callbox p {
    color: #495057;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.smart-callbox p:last-of-type {
    margin-bottom: 0;
}
.smart-callbox a {
    font-weight: 600;
    text-decoration: none;
    border-bottom-style: dashed;
    border-bottom-width: 1px;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.smart-callbox a:hover {
    color: #000000;
    border-bottom-color: #000000;
}
.smart-callbox .scb-item-links a {
    margin-left: 5px;
}