/* Semantic CSS for Global Layout Utilities */

/* Pill Buttons for Quick Actions */
.btn--pill {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    color: #4b5563;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
    cursor: pointer;
    min-height: 0;
    /* Reset any inherited min-height */
}

.btn--pill:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    border-color: #d1d5db;
}

/* Helpers */
.text-icon-lg {
    font-size: 1.25rem;
}

.text-hint {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.bg-green {
    background-color: #22c55e;
}

.bg-red {
    background-color: #ef4444;
}
