/* Border utilities - Border and border-radius helpers */

/* Border utilities */
.border { border: 1px solid var(--border) !important; }
.border-t { border-top: 1px solid var(--border) !important; }
.border-b { border-bottom: 1px solid var(--border) !important; }
.border-l { border-left: 1px solid var(--border) !important; }
.border-r { border-right: 1px solid var(--border) !important; }
.border-none { border: none !important; }

/* Border radius utilities */
.rounded { border-radius: var(--radius-md) !important; }
.rounded-sm { border-radius: var(--radius-sm) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: 9999px !important; }
