:root {
    --color-border: #d1d5db; /* Default border color */
    --color-input: #e5e7eb; /* Default input background */
    --color-ring: #3b82f6; /* Default ring color */
    --color-background: #ffffff; /* Default background */
    --color-dark-bg: #2c3c39;
    --color-foreground: #111827; /* Default text color */
    --color-dark-foreground: #f3f4f6;

    /* Primary Colors */
    --color-primary: #198341;
    --color-primary-light-50: #e6f3ea;
    --color-primary-light-100: #c2e5c9;
    --color-primary-light-200: #9fd7a8;
    --color-primary-light-300: #7bc986;
    --color-primary-light-400: #57bb64;
    --color-primary-light-500: #34ad43;
    --color-primary-dark-50: #145c2c;
    --color-primary-dark-100: #0f4a23;
    --color-primary-dark-200: #0b381a;
    --color-primary-dark-300: #062611;
    --color-primary-dark-400: #021408;
    --color-primary-foreground-light: #ffffff;
    --color-primary-foreground-dark: #f0f0f0;

    /* Secondary Colors */
    --color-secondary: #5856d6;
    --color-secondary-light-50: #e6e6fa;
    --color-secondary-light-100: #c2c0f5;
    --color-secondary-light-200: #9f9cf0;
    --color-secondary-light-300: #7b78eb;
    --color-secondary-light-400: #5856d6;
    --color-secondary-light-500: #3432c2;
    --color-secondary-dark-50: #3a3e8f;
    --color-secondary-dark-100: #2d3172;
    --color-secondary-dark-200: #212457;
    --color-secondary-dark-300: #15163b;
    --color-secondary-dark-400: #0a0b1e;
    --color-secondary-foreground-light: #ffffff;
    --color-secondary-foreground-dark: #f0f0f0;

    /* Destructive Colors */
    --color-destructive: #dc2626;
    --color-destructive-foreground: #ffffff;

    /* Muted Colors */
    --color-muted: #9ca3af;
    --color-muted-foreground: #374151;

    /* Accent Colors */
    --color-accent: #9333ea;
    --color-accent-foreground: #ffffff;

    /* Popover Colors */
    --color-popover: #f3f4f6;
    --color-popover-foreground: #111827;

    /* Card Colors */
    --color-card: #ffffff;
    --color-card-foreground: #111827;

    /* Hover Colors */
    --color-hover: #3b82f6;
    --color-hover-secondary: #6b7280;
    --color-hover-muted: #6b7280;
    --color-hover-accent: #a855f7;
    --color-hover-destructive: #ef4444;

    /* Status Colors */
    --color-success: #16a34a;
    --color-success-foreground: #d1fae5;
    --color-danger: #dc2626;
    --color-danger-foreground: #fee2e2;
    --color-alert: #f59e0b;
    --color-alert-foreground: #fef3c7;
    --color-info: #3b82f6;
    --color-info-foreground: #dbeafe;

    /* Sidebar Colors */
    --color-sidebar: #1f2937;
    --color-sidebar-foreground: #ffffff;
    --color-sidebar-primary: #1d4ed8;
    --color-sidebar-primary-foreground: #ffffff;
    --color-sidebar-accent: #6d28d9;
    --color-sidebar-accent-foreground: #ffffff;
    --color-sidebar-border: #374151;
    --color-sidebar-ring: #60a5fa;
}

.custom-button {
    padding: 1rem 4rem; /* py-4 px-16 */
    text-transform: capitalize; /* capitalize */
    background-image: linear-gradient(
        to right,
        var(--color-secondary),
        var(--color-primary)
    ); /* bg-gradient-to-r */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
    display: inline-block;
    text-align: center;
    font-weight: bold;
    color: white; /* Adjust text color if needed */
    text-decoration: none;
}

.custom-button:hover {
    background-image: linear-gradient(
        to right,
        var(--color-secondary-dark-100),
        var(--color-primary-dark-100)
    ); /* hover:from-secondary-dark-100 hover:to-primary-dark-100 */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* hover:shadow-lg */
    transform: scale(1.05); /* hover:scale-105 */
}

.secondary-button {
    padding: 0.75rem 2rem; /* px-8 py-3 */
    background-image: linear-gradient(
        to right,
        var(--color-primary),
        var(--color-primary-dark-50)
    ); /* bg-gradient-to-r */
    color: white; /* text-white */
    border: none;
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
}

.secondary-button-2 {
    padding: 0.75rem 2rem; /* px-8 py-3 */
    background-image: linear-gradient(
        to right,
        var(--color-secondary),
        var(--color-secondary-dark-50)
    ); /* bg-gradient-to-r */
    color: white; /* text-white */
    border: none;
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* transition-all duration-300 */
}

.secondary-button:hover,
.secondary-button-2:hover {
    transform: translateY(-2px); /* hover:-translate-y-0.5 */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* hover:shadow-lg */
}
