.swal-toast-title {
    font-size: 16px !important;   /* اندازه دلخواه */
    font-weight: normal;
}
/* ───── خلاصه مالی ───── */
.report-summary {
    background: #E65100;
    color: #fff;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.summary-toggle {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}
.summary-content {
    padding: 0 15px 15px;
}
.summary-grid {
    display: flex;
    flex-wrap: wrap;
}
.summary-col {
    flex: 1 1 50%;
    min-width: 150px;
}
.summary-col div {
    font-size: 16px;
    margin-top: 5px;
}
.summary-col span { opacity: 0.9; }
.summary-col strong { margin-right: 4px; }

/* ───── کارت سرویس ───── */
.report-list {
    padding-bottom: 60px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    margin: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* نوار وضعیت */
.service-status {
    color: #fff;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.service-status.done   { background: #2E7D32; }
.service-status.cancel { background: #C62828; }

/* هدر */
.service-header {
    display: flex;
    padding: 12px 10px 0;
    gap: 10px;
}
.service-header::before {
    content: '';
    width: 4px;
    background: #E65100;
    border-radius: 2px;
    margin-left: 6px;
}
.service-info {
    flex: 1;
}
.info-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2px;
}
.label {
    font-size: 15px;
    font-weight: bold;
    color: #555;
    margin-left: 5px;
}
.value { font-size: 15px; font-weight: bold; }
.value.primary { color: #E65100; }
.value.green   { color: #2E7D32; }
.value.red     { color: #C62828; }
.value.dark    { color: #222; }

/* متا */
.service-meta {
    display: flex;
    justify-content: space-around;
    padding: 12px 5px;
    margin: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.meta-box {
    text-align: center;
    flex: 1;
    position: relative;
}
.meta-box + .meta-box::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background: #ccc;
}
.meta-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}
.meta-value {
    font-size: 14px;
    font-weight: bold;
    color: #444;
}

/* خطوط پایین */
.service-line {

    align-items: center;
    padding: 6px 12px;

    font-size: 14px;
}
.service-line .label { color: #333; }

/* نوار پایین تعداد */
.service-count-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #8E24AA;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
}

/* ───── انتخاب‌گر تاریخ ───── */
.date-selector {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: #fff;
    margin: 10px;
    border-radius: 8px;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.date-selector label { font-weight: bold; white-space: nowrap; }
.date-selector input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}
