/* LicenseDetailDialog styles */
.license-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--rz-base-100), transparent);
    border-radius: 10px;
    border-left: 3px solid var(--rz-primary);
}
.license-detail-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--rz-base-200);
    padding: 3px;
    flex-shrink: 0;
}
.license-detail-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--rz-primary-lighter), var(--rz-base-200));
    color: var(--rz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.license-detail-section {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rz-base-200);
}
.license-detail-section:last-child { border-bottom: none; }
.license-detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rz-text-tertiary-color);
    margin-bottom: 0.2rem;
}
.license-detail-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rz-text-color);
}
.license-kpi-card {
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--rz-base-100);
    border: 1px solid var(--rz-base-200);
}
.license-kpi-value { font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.license-kpi-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--rz-text-tertiary-color); margin-top: 0.2rem; }
