    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

        /* Loading Spinner Overlay */
        .loading-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(4px);
            z-index: 9999;
        }
        .spinner {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(255, 119, 0, 0.1);
            border-top-color: #ff7700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Auth page styles */
        :root {
            --bg-dark: #1a1a1a;
            --panel-dark: #222222;
            --light-gray: #2a2a2a;
            --muted: #a0a0a0;
            --accent: #ff7700;
            --text-primary: #e6e6e6;
            --text-secondary: #b0b0b0;
        }

        body {
            background: var(--bg-dark);
            color: var(--text-primary);
            font-family: 'Space Grotesk', Roboto, system-ui, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .auth-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 60px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--panel-dark) 50%, var(--light-gray) 100%);
            position: relative;
            overflow: hidden;
        }

        .auth-container::before {
            content: '';
            position: absolute;
            width: clamp(320px, 60vw, 600px);
            height: clamp(320px, 60vw, 600px);
            background: radial-gradient(circle, rgba(255, 119, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: calc(-1 * clamp(160px, 30vw, 300px));
            right: calc(-1 * clamp(160px, 30vw, 300px));
            animation: float 8s ease-in-out infinite;
        }

        .auth-container::after {
            content: '';
            position: absolute;
            width: clamp(280px, 50vw, 500px);
            height: clamp(280px, 50vw, 500px);
            background: radial-gradient(circle, rgba(255, 119, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: calc(-1 * clamp(140px, 25vw, 250px));
            left: calc(-1 * clamp(140px, 25vw, 250px));
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        .auth-wrapper {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1100px;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .auth-wrapper > * {
            flex: 1 1 420px;
            min-width: 0;
        }

        .auth-info {
            animation: fadeInLeft 0.8s ease-out;
        }

        .auth-info h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .auth-info p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .auth-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(42, 42, 42, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: rgba(255, 119, 0, 0.3);
            transform: translateX(10px);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 119, 0, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
        }

        .feature-text {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .auth-card {
            background: rgba(42, 42, 42, 0.7);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 119, 0, 0.2);
            padding: 48px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: fadeInRight 0.8s ease-out;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid rgba(255, 119, 0, 0.25);
            background: rgba(255, 119, 0, 0.08);
            color: var(--text-primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 16px;
        }

        .back-btn svg {
            width: 18px;
            height: 18px;
        }

        .back-btn:hover {
            border-color: rgba(255, 119, 0, 0.5);
            background: rgba(255, 119, 0, 0.16);
            transform: translateX(-2px);
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .auth-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 32px;
            background: rgba(42, 42, 42, 0.5);
            padding: 6px;
            border-radius: 12px;
        }

        .tab-btn {
            flex: 1;
            padding: 12px 24px;
            background: transparent;
            border: none;
            border-radius: 8px;
            font-family: 'Space Grotesk', Roboto, sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .tab-btn:hover:not(.active) {
            color: var(--accent);
        }

        .form-container {
            position: relative;
        }

        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
            animation: fadeIn 0.4s ease-out;
        }

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

        .form-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

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

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }

        /* Avoid double spacing (gap + form-group margin) inside rows */
        .form-row .form-group {
            margin-bottom: 0;
        }

        .form-row > * {
            flex: 1 1 240px;
            min-width: 0;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .form-label .required {
            color: var(--accent);
            margin-left: 4px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translate3d(0, -50%, 0);
            width: 20px;
            height: 20px;
            color: var(--muted);
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            overflow: hidden;
            pointer-events: none;
            transition: color 0.3s ease;
            z-index: 2;
            display: block;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        /* Keep primitives inheriting currentColor; avoid heavy-handed vector-effect overrides */
        .input-wrapper .input-icon :where(path, line, polyline, polygon, circle, rect, ellipse) {
            fill: none;
            stroke: currentColor;
        }

        /* Override global input styles from css/styles.css (input:not(...)) */
        input.form-input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='color']) {
            width: 100%;
            padding: 14px 16px 14px 48px;
            background: rgba(42, 42, 42, 0.6);
            border: 2px solid rgba(255, 119, 0, 0.2);
            border-radius: 12px;
            font-family: 'Space Grotesk', Roboto, system-ui, sans-serif;
            font-size: 0.95rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
            outline: none;
            position: relative;
            z-index: 1;
            appearance: none;
            -webkit-appearance: none;
            min-height: unset;
            line-height: normal;
        }

        /* Hide native password reveal / clear buttons (Edge/IE) */
        .form-input::-ms-reveal,
        .form-input::-ms-clear {
            display: none;
        }

        input.form-input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='color']):focus {
            border-color: var(--accent);
            background: rgba(42, 42, 42, 0.8);
            box-shadow: none;
        }

        input.form-input:focus + .input-icon {
            color: var(--accent);
        }

        /* More robust than adjacent sibling selector (covers all inputs in wrapper) */
        .input-wrapper:focus-within .input-icon {
            color: var(--accent);
        }

        .input-wrapper:focus-within .password-toggle {
            color: var(--accent);
        }

        input.form-input::placeholder {
            color: var(--muted);
        }

        .password-toggle {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .password-toggle:hover {
            color: var(--accent);
        }

        .password-toggle svg {
            width: 20px;
            height: 20px;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 16px 0;
        }

        .custom-checkbox {
            width: 20px;
            height: 20px;
            accent-color: var(--accent);
            cursor: pointer;
        }

        .checkbox-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            cursor: pointer;
        }

        .checkbox-label a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .checkbox-label a:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            border: none;
            border-radius: 12px;
            font-family: 'Space Grotesk', Roboto, sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 119, 0, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn svg {
            width: 20px;
            height: 20px;
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 24px 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: rgba(255, 119, 0, 0.2);
        }

        .divider-text {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .social-login {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        /* Center the Google Sign-In button */
        .social-login .g_id_signin {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .social-login .g_id_signin > div {
            margin: 0 auto;
        }

        .social-login > .social-btn {
            flex: 1 1 180px;
        }

        .social-btn {
            padding: 12px;
            background: rgba(42, 42, 42, 0.6);
            border: 2px solid rgba(255, 119, 0, 0.2);
            border-radius: 12px;
            font-family: 'Space Grotesk', Roboto, sans-serif;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .social-btn:hover {
            border-color: var(--accent);
            background: rgba(42, 42, 42, 0.8);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
        }

        .forgot-password {
            text-align: right;
            margin-top: -8px;
            margin-bottom: 16px;
        }

        .forgot-password a {
            font-size: 0.875rem;
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        /* Company Registration Toggle & Fields */
        .company-toggle-wrapper {
            margin: 20px 0;
            padding: 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 12px;
        }

        .company-toggle {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .company-toggle input {
            display: none;
        }

        .toggle-slider {
            width: 48px;
            height: 26px;
            background: rgba(42, 42, 42, 0.8);
            border-radius: 13px;
            position: relative;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .toggle-slider::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--muted);
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
        }

        .company-toggle input:checked + .toggle-slider {
            background: rgba(99, 102, 241, 0.3);
        }

        .company-toggle input:checked + .toggle-slider::after {
            transform: translateX(22px);
            background: #6366f1;
        }

        .toggle-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .company-fields {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            animation: slideDown 0.3s ease-out;
        }

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

        .company-fields-notice {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.85rem;
            color: #fbbf24;
        }

        .company-fields-notice svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .pending-approval-message {
            text-align: center;
            padding: 24px;
        }

        .pending-approval-message .pending-icon {
            width: 64px;
            height: 64px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .pending-approval-message .pending-icon svg {
            width: 32px;
            height: 32px;
            color: #6366f1;
        }

        .pending-approval-message h3 {
            margin: 0 0 8px;
            font-size: 1.25rem;
            color: var(--text-primary);
        }

        .pending-approval-message p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .error-message {
            display: none;
            padding: 12px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 8px;
            color: #ef4444;
            font-size: 0.875rem;
            margin-bottom: 16px;
        }

        .success-message {
            display: none;
            padding: 12px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            color: #22c55e;
            font-size: 0.875rem;
            margin-bottom: 16px;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .auth-wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .auth-info {
                text-align: center;
            }

            .feature-item:hover {
                transform: translateY(-5px);
            }

            .auth-card {
                padding: 32px 24px;
            }

            .form-row {
                flex-direction: column;
            }

            /* Prevent huge gaps on mobile when form-row becomes a column */
            .form-row > * {
                flex: 0 0 auto;
            }
        }

        @media (max-width: 767.98px) {
            .auth-container {
                padding: 100px 16px 40px;
            }

            .auth-card {
                padding: 24px 20px;
            }

            .auth-tabs {
                margin-bottom: 20px;
            }

            .form-subtitle {
                margin-bottom: 20px;
            }

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

            .form-row {
                gap: 12px;
                margin-bottom: 16px;
            }

            .divider {
                margin: 18px 0;
            }

            .checkbox-wrapper {
                margin: 12px 0;
            }

            .social-login {
                flex-direction: column;
            }

            .social-login .g_id_signin {
                justify-content: center;
            }
        }

        /* Email Verification Modal */
        .verification-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease-out;
        }

        .verification-modal-overlay.active {
            display: flex;
        }

        .verification-modal {
            background: var(--panel-dark);
            border-radius: 24px;
            border: 1px solid rgba(255, 119, 0, 0.3);
            padding: 48px;
            max-width: 480px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: scaleIn 0.3s ease-out;
            text-align: center;
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .verification-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 119, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .verification-icon svg {
            width: 40px;
            height: 40px;
            color: var(--accent);
        }

        .verification-modal h2 {
            font-size: 1.75rem;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .verification-modal p {
            color: var(--text-secondary);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .verification-email {
            color: var(--accent);
            font-weight: 600;
        }

        .verification-code-inputs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 32px 0;
        }

        .verification-code-input {
            width: 52px;
            height: 64px;
            background: rgba(42, 42, 42, 0.8);
            border: 2px solid rgba(255, 119, 0, 0.3);
            border-radius: 12px;
            font-family: 'Space Grotesk', monospace;
            font-size: 1.75rem;
            font-weight: 700;
            text-align: center;
            color: var(--text-primary);
            outline: none;
            transition: all 0.3s ease;
        }

        .verification-code-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.2);
        }

        .verification-code-input.error {
            border-color: #ef4444;
            animation: shake 0.5s ease-in-out;
        }

        .verification-code-input.success {
            border-color: #22c55e;
        }

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

        .verification-timer {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .verification-timer span {
            color: var(--accent);
            font-weight: 600;
        }

        .verification-error {
            display: none;
            padding: 12px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 8px;
            color: #ef4444;
            font-size: 0.875rem;
            margin-bottom: 16px;
        }

        .verification-success {
            display: none;
            padding: 12px;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            color: #22c55e;
            font-size: 0.875rem;
            margin-bottom: 16px;
        }

        .resend-code {
            background: none;
            border: none;
            color: var(--accent);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            padding: 8px 16px;
            transition: all 0.3s ease;
        }

        .resend-code:hover:not(:disabled) {
            text-decoration: underline;
        }

        .resend-code:disabled {
            color: var(--muted);
            cursor: not-allowed;
        }

        .verify-btn {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            border: none;
            border-radius: 12px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .verify-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 119, 0, 0.4);
        }

        .verify-btn:disabled {
            background: var(--muted);
            cursor: not-allowed;
            transform: none;
        }

        @media (max-width: 480px) {
            .verification-modal {
                padding: 32px 24px;
            }

            .verification-code-inputs {
                gap: 8px;
            }

            .verification-code-input {
                width: 44px;
                height: 56px;
                font-size: 1.5rem;
            }
        }

/* ==================== REGISTRATION TYPE CARDS ==================== */
.type-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    background: var(--panel-dark);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    font-family: inherit;
    color: var(--text-primary);
}

.type-card:hover {
    border-color: var(--accent);
    background: rgba(255, 119, 0, 0.05);
    transform: translateY(-2px);
}

.type-card.selected,
.type-card:focus {
    border-color: var(--accent);
    background: rgba(255, 119, 0, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.2);
    outline: none;
}

.type-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--light-gray);
}

.type-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
    fill: none;
}

.type-card-icon.user-icon {
    background: rgba(255, 119, 0, 0.1);
}

.type-card-icon.company-icon {
    background: rgba(59, 130, 246, 0.1);
}

.type-card-icon.company-icon svg {
    stroke: #3b82f6;
}

.type-card.company:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.type-card.company.selected,
.type-card.company:focus {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.type-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.type-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.type-card-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.type-card-badge.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

@media (min-width: 500px) {
    .type-cards {
        flex-direction: row;
        gap: 16px;
    }
    
    .type-card {
        flex: 1;
    }
}
