/* ---------- Cards ---------- */
.card {
    border: none;
    border-radius: 0.5rem;
}

.card h6 {
    color: #6c757d;
}

.card h3,
.card h4 {
    color: #212529;
}

/* ---------- Buttons ---------- */
.btn-vexen {
    background-color: #0078D7;
    color: #fff !important;
    border: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-vexen:hover {
    background-color: #0063b1;
    color: #fff !important;
}

/* ---------- Inputs ---------- */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

.input-group .form-control {
    height: 42px;
    border-left: none;
    box-shadow: none;
}

#orgSearchBox {
    width: 100%;
    padding: 5px 8px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#orgDropdownList {
    max-height: 400px;
    overflow-y: auto;
}

/* highlight selected row in search */
.active-highlight {
    background-color: #0078D7;
    color: #fff !important;
}

/* --- Summary Metric Cards --- */
.summary-card {
    flex: 1 1 200px;
    /* responsive width, wraps on smaller screens */
    white-space: nowrap;
    /* prevent number wrapping */
    overflow: hidden;
    /* prevents spillover */
    text-overflow: ellipsis;
    /* adds ... if it ever overflows */
}

.summary-card .amount {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0d6efd;
    /* or whatever your accent color is */
    white-space: nowrap;
    /* make sure R 14 307 784.74 stays on one line */
}