﻿/* Center header titles (inside <td><span class="rz-column-title">) */
.center-header .rz-column-title {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

/* Center cell content (span.rz-cell-data) */
.center-cell .rz-cell-data {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
}

/* Center checkbox inside cell */
.center-cell .rz-chkbox {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center numeric input */
.center-cell .rz-numeric input,
.center-cell input[type="number"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center phone text */
.center-cell.phone-text .rz-cell-data {
    justify-content: center !important;
}

/* Highlight for Hot leads */
.hot-row {
    background-color: rgba(255, 120, 120, 0.22) !important;
}

    /* Ensure the highlight covers all cells inside the row */
    .hot-row > td {
        background-color: rgba(255, 120, 120, 0.22) !important;
    }

/* Completely remove top padding/margins in Radzen v8 dark-base layout */
.rz-body,
.rz-main,
.rz-content,
.rz-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Dot indicator when notes exist */
.notes-dot {
    width: 10px;
    height: 10px;
    background-color: #4FC3F7; /* light teal blue */
    border-radius: 50%;
    display: inline-block;
    margin-right: 2px;
    box-shadow: 0 0 4px rgba(79, 195, 247, 0.8);
}

.lead-dialog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 36px; /* vertical / horizontal spacing */
    padding: 8px 12px;
}

    .lead-dialog-grid label {
        margin-top: 6px;
    }

.card-label {
    font-size: 13px;
    opacity: 0.8;
}

.card-value {
    font-size: 22px;
    font-weight: 600;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
}

.card-footnote {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 4px;
}
