/**
 * Fuel Costs Block — Dashboard
 * Matches Figma design: border-radius 10px, border #f3f3f3, Jost font
 */

/* =====================
   BLOCK — fuel-costs-section
   ===================== */
.fuel-costs-section {
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

/* Header */
.fuel-costs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f3f3;
}

.fuel-costs-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #000;
    margin: 0;
}

.fuel-costs-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.fuel-costs-icon svg {
    width: 32px;
    height: 32px;
}

/* Data Row */
.fuel-costs-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.fuel-costs-left,
.fuel-costs-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fuel-costs-right {
    text-align: right;
}

.fuel-costs-value {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #000;
}

.fuel-costs-detail {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #000;
}

/* Buttons */
.fuel-costs-actions {
    display: flex;
    gap: 12px;
}

.btn-fuel-action {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 6px;
    background: rgba(59, 0, 221, 0.1);
    color: #3B00DD;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-fuel-action:hover {
    background: rgba(59, 0, 221, 0.18);
    color: #3B00DD;
}

/* Empty State */
.fuel-costs-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.fuel-costs-empty-text {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
}

.btn-fuel-add {
    width: 100%;
}

/* =====================
   MODAL — fuel preview
   ===================== */
.fuel-preview {
    background: #f9f9fb;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fuel-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fuel-preview-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6B7280;
}

.fuel-preview-value {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #3B00DD;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .fuel-costs-section {
        padding: 14px 16px 20px;
        gap: 18px;
    }

    .fuel-costs-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-fuel-action {
        width: 100%;
    }

    .fuel-costs-title {
        font-size: 16px;
    }

    .fuel-costs-value {
        font-size: 16px;
    }
}
