:root {
        --header-height: 100px;
        --background: 210 40% 98%;
        --foreground: 222.2 84% 4.9%;
        --card: 0 0% 100%;
        --card-foreground: 222.2 84% 4.9%;
        --popover: 0 0% 100%;
        --popover-foreground: 222.2 84% 4.9%;
        --primary: 221.2 83.2% 53.3%;
        --primary-foreground: 210 40% 98%;
        --secondary: 210 40% 96.1%;
        --secondary-foreground: 222.2 47.4% 11.2%;
        --muted: 210 40% 96.1%;
        --muted-foreground: 215.4 16.3% 32.9%;
        --accent: 210 40% 96.1%;
        --accent-foreground: 222.2 47.4% 11.2%;
        --destructive: 0 84.2% 60.2%;
        --destructive-foreground: 210 40% 98%;
        --border: 214.3 31.8% 91.4%;
        --input: 214.3 31.8% 91.4%;
        --ring: 221.2 83.2% 53.3%;
        --radius: 0.5rem;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
        --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
        --shadow-glow: 0 0 30px rgba(0, 0, 0, 0.15);
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dark {
        --background: 224 71% 4%;
        --foreground: 210 40% 98%;
        --card: 222.2 84% 4.9%;
        --card-foreground: 210 40% 98%;
        --popover: 222.2 84% 4.9%;
        --popover-foreground: 210 40% 98%;
        --primary: 217.2 91.2% 59.8%;
        --primary-foreground: 222.2 47.4% 11.2%;
        --secondary: 217.2 32.6% 17.5%;
        --secondary-foreground: 210 40% 98%;
        --muted: 217.2 32.6% 17.5%;
        --muted-foreground: 215 20.2% 65.1%;
        --accent: 217.2 32.6% 17.5%;
        --accent-foreground: 210 40% 98%;
        --destructive: 0 62.8% 30.6%;
        --destructive-foreground: 210 40% 98%;
        --border: 217.2 32.6% 17.5%;
        --input: 217.2 32.6% 17.5%;
        --ring: 212.7 26.8% 83.9%;
}

/* @media (prefers-color-scheme: dark) {
  :root {
          --background: 0 0% 3.9%;
          --foreground: 0 0% 98%;
          --card: 0 0% 8%;
          --card-foreground: 0 0% 98%;
          --popover: 0 0% 8%;
          --popover-foreground: 0 0% 98%;
          --primary: 210 100% 60%;
          --primary-foreground: 0 0% 10%;
          --muted: 0 0% 14.9%;
          --muted-foreground: 0 0% 63.9%;
          --border: 0 0% 18%;
          --input: 0 0% 18%;
          --ring: 210 100% 70%;
  }
} */

*,
*::before,
*::after {
        box-sizing: border-box;
}
html {
        -webkit-text-size-adjust: 100%;
}
* {
        border-color: hsl(var(--border));
}

body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
                Arial, sans-serif;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
        color: hsl(var(--foreground));
        background-color: hsl(var(--background));
        font-weight: 400;
}

/* Tối ưu container cho style đơn sắc */
.page-container {
        padding-top: 3.5rem;
        min-height: 100vh;
        background-color: hsl(var(--background));
}

.content-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
}

@media (min-width: 640px) {
        .content-container {
                padding: 2rem 1.5rem;
        }
}

@media (min-width: 1024px) {
        .content-container {
                padding: 2rem 2rem;
        }
}

/* Card style đơn sắc - Enterprise spacing */
.card {
        background: hsl(var(--card));
        color: hsl(var(--card-foreground));
        border-radius: var(--radius);
        border: 1px solid hsl(var(--border));
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        padding: 24px;
}

/* Section spacing */
.section {
        margin-bottom: 32px;
}

.section-large {
        margin-bottom: 48px;
}

.card-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid hsl(var(--border));
}

.card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: hsl(var(--foreground));
        margin: 0;
}

.card-subtitle {
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
        margin-top: 0.25rem;
}

/* Button styles đơn sắc - Enterprise height */
.btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.625rem 1rem;
        min-height: 40px;
        border-radius: calc(var(--radius) - 2px);
        font-weight: 500;
        font-size: 14px;
        transition: all 0.2s;
        border: none;
        cursor: pointer;
        text-decoration: none;
}

.btn:hover:not(:disabled) {
        opacity: 0.9;
}

.btn:active:not(:disabled) {
        opacity: 0.8;
}

.btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
}

.btn-primary {
        background-color: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
        background-color: hsl(var(--primary) / 0.9);
}

.btn-secondary {
        background-color: hsl(var(--secondary));
        color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
        background-color: hsl(var(--secondary) / 0.9);
}

.btn-danger {
        background-color: hsl(var(--destructive));
        color: hsl(var(--destructive-foreground));
}

.btn-danger:hover {
        background-color: hsl(var(--destructive) / 0.9);
}

/* Typography Hierarchy - Enterprise Scale */
h1 {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 1rem 0;
        color: hsl(var(--foreground));
}

h2 {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 0.75rem 0;
        color: hsl(var(--foreground));
}

h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        margin: 0 0 0.5rem 0;
        color: hsl(var(--foreground));
}

h4 {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin: 0 0 0.5rem 0;
        color: hsl(var(--foreground));
}

p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        margin: 0 0 1rem 0;
        color: hsl(var(--foreground));
}

label {
        font-size: 14px;
        font-weight: 500;
        color: hsl(var(--foreground));
}

.muted-text {
        font-size: 14px;
        font-weight: 400;
        color: hsl(var(--muted-foreground));
}

/* Containers */
.card {
        background: hsl(var(--card));
        color: hsl(var(--card-foreground));
        border-radius: var(--radius);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* Forms - Enterprise spacing */
label {
        font-size: 14px;
        font-weight: 500;
        display: block;
        margin-bottom: 0.5rem;
        color: hsl(var(--foreground));
}

.form-group {
        margin-bottom: 16px;
}

.form-group-large {
        margin-bottom: 20px;
}

input,
textarea,
select {
        font: inherit;
        font-size: 14px;
        font-weight: 400;
        color: hsl(var(--foreground));
        background: hsl(var(--background));
        border: 1px solid hsl(var(--input));
        border-radius: calc(var(--radius) - 2px);
        padding: 10px 14px;
        width: 100%;
        min-height: 40px;
        outline: none;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:hover,
textarea:hover,
select:hover {
        border-color: hsl(var(--border));
}

input:focus,
textarea:focus,
select:focus {
        border-color: hsl(var(--ring));
        box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
        outline: none;
}

input:disabled,
textarea:disabled,
select:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background-color: hsl(var(--muted));
}

/* Buttons - Consistent styling */
button,
.btn {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        appearance: none;
        border: 0;
        cursor: pointer;
        border-radius: calc(var(--radius) - 2px);
        padding: 10px 16px;
        min-height: 40px;
        font-weight: 500;
        font-size: 14px;
        transition: background-color 0.15s ease, opacity 0.15s ease;
}
.btn-primary,
button[type="submit"] {
        background-color: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
}
.btn-secondary {
        background-color: hsl(var(--secondary));
        color: hsl(var(--secondary-foreground));
}
.btn-danger {
        background-color: hsl(var(--destructive));
        color: hsl(var(--destructive-foreground));
}
button:hover,
.btn:hover {
        opacity: 0.92;
}
button:active,
.btn:active {
        transform: translateY(1px);
}
button:disabled,
.btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
}

/* Enterprise Status Styling - Simple text + dot/border */
.status-text {
        font-size: 14px;
        font-weight: 400;
        color: hsl(var(--foreground));
        display: inline-flex;
        align-items: center;
        gap: 6px;
}

.status-text::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
}

/* Status variants - subtle colors */
.status-pending-text {
        color: hsl(38, 92%, 45%);
}

.status-pending-text::before {
        background-color: hsl(38, 92%, 45%);
}

.status-approved-text,
.status-confirmed-text {
        color: hsl(145, 63%, 40%);
}

.status-approved-text::before,
.status-confirmed-text::before {
        background-color: hsl(145, 63%, 40%);
}

.status-rejected-text {
        color: hsl(var(--destructive));
}

.status-rejected-text::before {
        background-color: hsl(var(--destructive));
}

/* Alternative: text with thin border (no dot) */
.status-border {
        font-size: 14px;
        font-weight: 400;
        padding: 2px 8px;
        border: 1px solid hsl(var(--border));
        border-radius: 4px;
        display: inline-block;
}

.status-border.status-pending {
        color: hsl(38, 92%, 45%);
        border-color: hsl(38, 92%, 45% / 0.4);
}

.status-border.status-approved,
.status-border.status-confirmed {
        color: hsl(145, 63%, 40%);
        border-color: hsl(145, 63%, 40% / 0.4);
}

.status-border.status-rejected {
        color: hsl(var(--destructive));
        border-color: hsl(var(--destructive) / 0.4);
}

/* Empty State - Enterprise style */
.empty-state {
        text-align: center;
        padding: 48px 32px;
        color: hsl(var(--muted-foreground));
        font-size: 14px;
        font-weight: 400;
}

.empty-state-title {
        font-size: 16px;
        font-weight: 500;
        color: hsl(var(--foreground));
        margin-bottom: 8px;
}

.empty-state-message {
        font-size: 14px;
        color: hsl(var(--muted-foreground));
        margin-bottom: 16px;
}

.empty-state-action {
        margin-top: 16px;
}

/* Loading states */
.skeleton {
        background: linear-gradient(
                90deg,
                hsl(var(--muted)) 0%,
                hsl(var(--muted) / 0.5) 50%,
                hsl(var(--muted)) 100%
        );
        background-size: 200% 100%;
        animation: skeleton-loading 1.5s ease-in-out infinite;
        border-radius: 4px;
}

@keyframes skeleton-loading {
        0% {
                background-position: 200% 0;
        }
        100% {
                background-position: -200% 0;
        }
}

.spinner-small {
        width: 16px;
        height: 16px;
        border: 2px solid hsl(var(--muted));
        border-top-color: hsl(var(--primary));
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        display: inline-block;
        vertical-align: middle;
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
        outline: 2px solid hsl(var(--ring));
        outline-offset: 2px;
}

/* Disable layout shift on loading */
button[disabled] {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
}

.alert-error {
        color: hsl(var(--destructive));
        background: color-mix(in oklab, hsl(var(--destructive)) 10%, transparent);
        border: 1px solid color-mix(in oklab, hsl(var(--destructive)) 28%, transparent);
        padding: 10px 12px;
        border-radius: calc(var(--radius) - 2px);
}

/* Enterprise Table Styles - Information Density */
table {
        width: 100%;
        border-collapse: collapse;
}

/* Reduced row height for better information density */
th,
td {
        padding: 10px 12px;
        border-bottom: 1px solid hsl(var(--border));
        vertical-align: middle;
        font-size: 14px;
        line-height: 1.4;
}

/* Header: font-weight 500, darker text than body */
thead th {
        background: hsl(var(--muted));
        position: sticky;
        top: 0;
        z-index: 1;
        font-weight: 500;
        color: hsl(var(--foreground));
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.025em;
        padding: 10px 12px;
        border-bottom: 2px solid hsl(var(--border));
}

/* Number columns: right align */
.col-number,
.col-price,
td[class*="col-price"],
td[class*="col-number"] {
        text-align: right;
        font-variant-numeric: tabular-nums;
}

/* Status columns: center align */
.col-status,
td[class*="col-status"] {
        text-align: center;
}

/* Action columns: right align */
.col-action,
td[class*="col-action"] {
        text-align: right;
}

/* Row hover - subtle */
tbody tr:hover {
        background-color: hsl(var(--muted) / 0.3);
}

.no-scrollbar::-webkit-scrollbar {
        display: none;
}
.no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
}
.text-muted {
        color: hsl(var(--muted-foreground));
}
.container-narrow {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
}
.container {
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
}

.theme-toggle {
        position: fixed;
        right: 16px;
        bottom: 16px;
        z-index: 500;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
        color: hsl(var(--foreground));
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        cursor: pointer;
}
.theme-toggle:hover {
        filter: brightness(0.95);
}
.theme-toggle:focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}

@media (prefers-reduced-motion: reduce) {
        * {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
        }
}

/* Shared animations - decorative animations removed for enterprise look */

@keyframes fadeInDown {
        from {
                opacity: 0;
                transform: translateY(-40px);
        }
        to {
                opacity: 1;
                transform: translateY(0);
        }
}

@keyframes fadeInUp {
        from {
                opacity: 0;
                transform: translateY(40px);
        }
        to {
                opacity: 1;
                transform: translateY(0);
        }
}

@keyframes fadeIn {
        from {
                opacity: 0;
        }
        to {
                opacity: 1;
        }
}

/* Decorative animations (shimmerHeader, expandWidth, textGlow, successPing) removed for enterprise look */

@keyframes shake {
        0%,
        100% {
                transform: translateX(0);
        }
        25% {
                transform: translateX(-10px);
        }
        75% {
                transform: translateX(10px);
        }
}

/* Particle utility removed for enterprise look */

.alert {
        padding: 18px 22px;
        border-radius: calc(var(--radius) + 4px);
        text-align: center;
        font-weight: 600;
}

.alert-info {
        background: color-mix(in oklab, hsl(var(--primary)) 12%, transparent);
        border: 1px solid color-mix(in oklab, hsl(var(--primary)) 28%, transparent);
        color: hsl(var(--primary));
}

.alert-warning {
        background: color-mix(in oklab, hsl(38 92% 50%) 12%, transparent);
        border: 1px solid color-mix(in oklab, hsl(38 92% 50%) 28%, transparent);
        color: hsl(38 92% 50%);
}

/* Utility classes từ ketoan để đảm bảo tính nhất quán */
.bg-background {
        background-color: hsl(var(--background));
}
.bg-card {
        background-color: hsl(var(--card));
}
.bg-primary {
        background-color: hsl(var(--primary));
}
.bg-secondary {
        background-color: hsl(var(--secondary));
}
.bg-muted {
        background-color: hsl(var(--muted));
}
.bg-accent {
        background-color: hsl(var(--accent));
}
.bg-destructive {
        background-color: hsl(var(--destructive));
}
.bg-popover {
        background-color: hsl(var(--popover));
}

.text-foreground {
        color: hsl(var(--foreground));
}
.text-card-foreground {
        color: hsl(var(--card-foreground));
}
.text-primary-foreground {
        color: hsl(var(--primary-foreground));
}
.text-secondary-foreground {
        color: hsl(var(--secondary-foreground));
}
.text-muted-foreground {
        color: hsl(var(--muted-foreground));
}
.text-accent-foreground {
        color: hsl(var(--accent-foreground));
}
.text-destructive-foreground {
        color: hsl(var(--destructive-foreground));
}
.text-popover-foreground {
        color: hsl(var(--popover-foreground));
}

.border-border {
        border-color: hsl(var(--border));
}
.border-input {
        border-color: hsl(var(--input));
}
.border-primary {
        border-color: hsl(var(--primary));
}
.border-destructive {
        border-color: hsl(var(--destructive));
}

.ring-primary {
        --tw-ring-color: hsl(var(--ring));
}
.ring-muted {
        --tw-ring-color: hsl(var(--muted));
}
.ring-destructive {
        --tw-ring-color: hsl(var(--destructive));
}

.rounded-lg {
        border-radius: var(--radius);
}
.rounded-md {
        border-radius: calc(var(--radius) - 2px);
}
.rounded-sm {
        border-radius: calc(var(--radius) - 4px);
}

/* Navbar styles theo ketoan */
.navbar {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 40;
        height: 3.5rem;
        border-bottom: 1px solid hsl(var(--border));
        background: hsl(var(--background) / 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
}

.navbar-container {
        margin: 0 auto;
        display: flex;
        height: 100%;
        align-items: center;
        padding: 0 1rem;
        gap: 1rem;
}

@media (min-width: 640px) {
        .navbar-container {
                padding: 0 1.5rem;
        }
}

@media (min-width: 1024px) {
        .navbar-container {
                padding: 0 2rem;
        }
}

.navbar-brand {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem;
        font-weight: 600;
        letter-spacing: -0.025em;
        color: hsl(var(--foreground));
        text-decoration: none;
        transition: color 0.2s;
}

.navbar-brand:hover {
        color: hsl(var(--primary));
}

.navbar-brand-text {
        color: hsl(var(--muted-foreground));
}

.navbar-menu-toggle {
        display: inline-flex;
        height: 2.25rem;
        width: 2.25rem;
        align-items: center;
        justify-content: center;
        border-radius: calc(var(--radius) - 2px);
        color: hsl(var(--muted-foreground));
        transition: all 0.2s;
        border: none;
        background: transparent;
        cursor: pointer;
}

.navbar-menu-toggle:hover {
        color: hsl(var(--foreground));
        background: hsl(var(--muted));
}

.navbar-menu-toggle:focus {
        outline: none;
        box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}

.navbar-search {
        flex: 1;
        min-width: 0;
}

.navbar-search-container {
        position: relative;
        max-width: 36rem;
        margin: 0 auto;
}

.navbar-search-input {
        width: 100%;
        border-radius: 9999px;
        border: 1px solid hsl(var(--input));
        background: hsl(var(--card));
        padding: 0.625rem 1rem 0.625rem 1rem;
        padding-right: 2.5rem;
        font-size: 0.875rem;
        color: hsl(var(--foreground));
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        transition: all 0.2s;
}

.navbar-search-input::placeholder {
        color: hsl(var(--muted-foreground));
}

.navbar-search-input:focus {
        border-color: hsl(var(--primary));
        outline: none;
        box-shadow: 0 0 0 2px hsl(var(--ring));
}

.navbar-search-icon {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        height: 1rem;
        width: 1rem;
        color: hsl(var(--muted-foreground));
        pointer-events: none;
}

.navbar-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
}

.navbar-user-menu {
        position: relative;
}

.navbar-user-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-radius: calc(var(--radius) - 2px);
        padding: 0.375rem 0.5rem;
        transition: background-color 0.2s;
        border: none;
        background: transparent;
        cursor: pointer;
}

.navbar-user-button:hover {
        background: hsl(var(--muted));
}

.navbar-user-button:focus {
        outline: none;
        box-shadow: 0 0 0 2px hsl(var(--ring));
}

.navbar-user-info {
        display: none;
        text-align: right;
        line-height: 1.25;
}

@media (min-width: 640px) {
        .navbar-user-info {
                display: block;
        }
}

.navbar-user-name {
        font-size: 0.75rem;
        font-weight: 500;
        color: hsl(var(--foreground));
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}

.navbar-user-role {
        font-size: 0.6875rem;
        color: hsl(var(--muted-foreground));
}

.navbar-user-avatar {
        height: 2.25rem;
        width: 2.25rem;
        overflow: hidden;
        border-radius: 9999px;
        border: 1px solid hsl(var(--border));
        background: hsl(var(--card));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 600;
        color: hsl(var(--foreground));
        flex-shrink: 0;
}

.navbar-user-dropdown {
        position: absolute;
        right: 0;
        margin-top: 0.5rem;
        width: 14rem;
        background: hsl(var(--card));
        border-radius: calc(var(--radius) - 2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        border: 1px solid hsl(var(--border));
        z-index: 50;
        padding: 0.25rem 0;
}

.navbar-dropdown-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        color: hsl(var(--foreground));
        transition: background-color 0.2s;
        border: none;
        background: transparent;
        cursor: pointer;
        text-decoration: none;
        text-align: left;
}

.navbar-dropdown-item:hover {
        background: hsl(var(--muted));
}

.navbar-dropdown-divider {
        border-top: 1px solid hsl(var(--border));
        margin: 0.25rem 0;
}

.navbar-dropdown-item-danger {
        color: hsl(var(--destructive));
}

.navbar-dropdown-item-danger:hover {
        background: hsl(var(--destructive) / 0.1);
}

/* Main content padding để tránh navbar */
.main-content {
        padding-top: 3.5rem;
        min-height: 100vh;
}

/* Navbar link button */
.navbar-link-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: calc(var(--radius) - 2px);
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        text-decoration: none;
        transition: all 0.2s;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        border: none;
        cursor: pointer;
}

.navbar-link-btn:hover {
        opacity: 0.9;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.navbar-link-btn:focus {
        outline: none;
        box-shadow: 0 0 0 2px hsl(var(--ring)), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-link-btn-icon {
        height: 1rem;
        width: 1rem;
}

@media (max-width: 640px) {
        .navbar-link-btn-text {
                display: none;
        }
        .navbar-link-btn {
                padding: 0.375rem;
                width: 2.25rem;
                height: 2.25rem;
                justify-content: center;
        }
}
