/* IJVA — Country widgets shared CSS */

.c-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
}
.c-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}
.c-card-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #0F6E56;
}
.c-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

/* Info card */
.c-info-list { display: block; font-size: 13px; }
.c-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    gap: 12px;
}
.c-info-row:last-child { border-bottom: none; }
.c-info-label { color: #6b7280; flex-shrink: 0; }
.c-info-value { font-weight: 500; color: #111827; text-align: right; }
.c-info-value .c-region-link { color: #0F6E56; }
.c-info-value .c-currency-code { color: #9ca3af; font-weight: 400; }

/* Exchange rate */
.c-rate-currency { font-size: 12px; color: #6b7280; margin-bottom: 10px; }
.c-rate-currency .c-currency-code { color: #9ca3af; }
.c-rate-list { font-size: 13px; }
.c-rate-row { display: flex; justify-content: space-between; padding: 5px 0; }
.c-rate-row span:first-child { color: #374151; }
.c-rate-row span:last-child { font-weight: 500; color: #0F6E56; }
.c-rate-chart-wrap {
    position: relative;
    height: 160px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}
.c-rate-chart-label { font-size: 11px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.c-rate-chart-canvas { display: block; width: 100% !important; max-height: 130px !important; }
.c-rate-updated { font-size: 11px; color: #9ca3af; margin-top: 10px; text-align: right; }

/* Location map */
.c-map-container { width: 100%; height: 200px; border-radius: 6px; background: #f9fafb; }
.c-map-error { font-size: 11px; color: #9ca3af; margin-top: 6px; text-align: center; display: none; }
