@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Pure Black Theme Palette */
    --primary-color: #3b82f6;
    /* Vibrant Blue */
    --primary-hover: #60a5fa;
    /* Light Blue */
    --primary-light: rgba(59, 130, 246, 0.15);
    --primary-glow: rgba(59, 130, 246, 0.35);

    --secondary-color: #9ca3af;
    /* Medium Grey */
    --secondary-glow: rgba(156, 163, 175, 0.4);

    --bg-color: #000000;
    /* Pure Black */
    --bg-gradient: linear-gradient(160deg, #000000 0%, #080808 60%, #000000 100%);

    --card-bg: #121212;
    /* Deep Grey/Black */
    --card-border: rgba(255, 255, 255, 0.08);

    --text-main: #FFFFFF;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);

    --danger-color: #ef4444;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.9);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius: 0.75rem;

    --glass-bg: rgba(0, 0, 0, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.03) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 45%);
    pointer-events: none;
    z-index: -1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.4);
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

button,
input,
select {
    font-family: inherit;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 12px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 22px var(--primary-glow);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Interactive Animations */
.hover-underline {
    position: relative;
    cursor: pointer;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(192, 112, 68, 0.3);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(192, 112, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(192, 112, 68, 0);
    }
}

.pulse-hover:hover {
    animation: pulse-soft 1.5s infinite;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.text-primary {
    color: var(--primary-color);
}

.text-muted {
    color: var(--text-muted);
}

.text-white {
    color: #FFFFFF;
}

.error-text {
    background: rgba(255, 82, 82, 0.1);
    color: #FF5252;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 82, 82, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mb-32 {
    margin-bottom: 8rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.grid {
    display: grid;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* Glassmorphism (light variant) */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3a3a6a);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

/* Inputs */
.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary-color);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.brand-tag {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: 4px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 8px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Auth Layout */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: transparent;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.6s ease-out;
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: transparent;
}

.sidebar {
    width: 280px;
    background-color: #050505;
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    z-index: 20;
    position: sticky;
    top: 0;
    height: 100vh;
    box-shadow: var(--shadow-sm);
}

.sidebar-header {
    padding: 0 1.5rem 2rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0 1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-link .lucide {
    width: 1.125rem;
    height: 1.125rem;
}

.sidebar-link:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(3px);
}

.sidebar-link.active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    color: #FFFFFF;
    border-left: 3px solid var(--primary-color);
    font-weight: 600;
}

.sidebar-footer {
    margin-top: auto;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.main-content {
    flex: 1;
    padding: 2.5rem;
    overflow-y: auto;
    animation: fadeIn 0.5s ease-out;
    background-color: var(--bg-color);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Progress Bar */
.progress-bar-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    height: 0.5rem;
    width: 100%;
    margin-top: 0.75rem;
    overflow: hidden;
}

.progress-value {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 9999px;
    transition: width 1s ease-out;
}

.listing-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}

.listing-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.listing-card:last-child {
    border-bottom: none;
}

.company-logo {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.03);
    color: #FFFFFF;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    border: 1px solid var(--card-border);
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.status-active,
.status-pending {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.status-closed,
.status-rejected {
    background: rgba(192, 57, 43, 0.08);
    color: #A93226;
    border: 1px solid rgba(192, 57, 43, 0.2);
}

.status-shortlisted {
    background: rgba(180, 130, 50, 0.1);
    color: #9A7020;
    border: 1px solid rgba(180, 130, 50, 0.25);
}

.status-offer_sent {
    background: rgba(52, 120, 190, 0.08);
    color: #2A6090;
    border: 1px solid rgba(52, 120, 190, 0.2);
}

.status-hired,
.status-accepted {
    background: rgba(56, 142, 90, 0.1);
    color: #2E7A50;
    border: 1px solid rgba(56, 142, 90, 0.25);
}

.status-withdrawn {
    background: rgba(120, 100, 90, 0.08);
    color: #7A6458;
    border: 1px solid rgba(120, 100, 90, 0.2);
    text-decoration: line-through;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

/* Responsive Design System */

/* Tablet & Smaller Laptops (1024px and down) */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-grid,
    .steps-grid,
    .testimonial-grid {
        gap: 1.5rem;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (768px and down) */
@media (max-width: 768px) {
    :root {
        --font-size-base: 14px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.25rem;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid var(--border-color);
        align-items: center;
        overflow-y: auto;
        z-index: 49;
    }

    .nav-links.active {
        display: flex;
        animation: slideUp 0.3s ease-out;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu-btn {
        display: block;
    }

    /* Layout Adjustments */
    .features-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 2.5rem;
        top: -0.5rem;
        left: 0;
    }

    .cta-section h2 {
        font-size: 2rem !important;
    }

    .cta-section .flex {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section .btn {
        width: 100%;
    }

    /* Dashboard Specifics */
    .dashboard-layout {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        height: 100vh;
        width: 280px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(0);
        box-shadow: 5px 0 20px rgba(44, 24, 16, 0.12);
        background-color: #FFFDF9;
    }

    .sidebar.active {
        transform: translateX(280px);
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 24, 16, 0.4);
        backdrop-filter: blur(4px);
        z-index: 15;
    }

    .sidebar-overlay.active {
        display: block;
        animation: fadeIn 0.2s ease-out;
    }

    .main-content {
        padding: 1.5rem 1rem;
        margin-left: 0;
        width: 100%;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.25rem;
    }

    .dashboard-header .flex.items-center {
        width: 100%;
        justify-content: space-between;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .listing-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        position: relative;
    }

    .listing-card .status-badge {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
    }

    .listing-card .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .dashboard-header .search-container {
        width: 100%;
        max-width: none;
    }

    .search-input {
        width: 100%;
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .logo-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu Button */
.nav-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 51;
}

/* Tables */
.table-container {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
}

table th {
    background-color: var(--card-bg);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.9rem;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover td {
    background-color: var(--primary-light);
}

/* Utility to hide/show on breakpoints */
.hidden-mobile {
    display: none;
}

@media (min-width: 769px) {
    .hidden-mobile {
        display: inherit;
    }

    .hidden-desktop {
        display: none;
    }
}

/* Modal base styles */
.modal-overlay {
    background: rgba(44, 24, 16, 0.45);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

/* Select styles */
select.input-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
}

select.input-field option {
    background-color: #121212;
    color: var(--text-main);
}

/* --- Mobile Visibility Helpers --- */

.mobile-only {
    display: none !important;
}

.mobile-only-flex {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-only-flex {
        display: flex !important;
    }
}

/* End of Styles */