.credit-estimate-bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin: 8px 0 18px;
    border: 1px solid #d9e6ff;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    background: #f8fbff;
    text-align: left;
}

.credit-estimate-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.credit-estimate-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e7f0ff;
    color: #0d6efd;
    font-size: 18px;
    flex-shrink: 0;
}

.credit-estimate-label {
    color: #4f5b67;
    font-size: 13px;
    line-height: 1.2;
}

.credit-estimate-total {
    color: #1f2933;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

.credit-estimate-total span,
.credit-estimate-unit {
    font-size: 14px;
    font-weight: 600;
    color: #4f5b67;
}

.credit-estimate-subtext {
    color: #6b7280;
    font-size: 12px;
    margin-top: 3px;
}

.credit-estimate-details {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.credit-estimate-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #dce7f7;
    border-radius: 999px;
    background: #fff;
    color: #304050;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.2;
}

.credit-estimate-item strong {
    color: #0d6efd;
    font-weight: 700;
}

.credit-estimate-human strong,
.credit-estimate-human {
    color: #6f42c1;
}

@media (max-width: 767px) {
    .credit-estimate-bar {
        flex-direction: column;
    }

    .credit-estimate-total {
        font-size: 24px;
    }
}
