:root {
    --bg-color: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --text-main: #F0F0F0;
    --text-muted: #A0A0A0;
    --accent: #00FF94;
    --accent-glow: rgba(0, 255, 148, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.accent {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

/* JavaScript-Controlled Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-arrow svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(90deg);
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: rgba(10, 10, 15, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 200px;
    list-style: none !important;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: block !important;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: rgba(0, 255, 148, 0.1);
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
    list-style: none;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    margin-top: 70px;
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #00FF94;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

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

.breadcrumb-separator {
    color: var(--text-muted);
    margin: 0 0.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 148, 0.2);
}

.nav-links .btn-primary {
    color: #000;
}

.btn-primary:hover {
    background-color: #33ffaa;
    color: #000;
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 148, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 148, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 148, 0.2);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.glow-1 {
    background: var(--accent);
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.glow-2 {
    background: purple;
    width: 400px;
    height: 400px;
    bottom: 0;
    left: -100px;
    opacity: 0.2;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card,
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover,
.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3,
.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p,
.service-card p {
    color: var(--text-muted);
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    position: relative;
}

.step:hover .step-number {
    color: rgba(0, 255, 148, 0.1);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-box {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-color);
    padding: 4rem 2rem;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form input:not([type="checkbox"]) {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1.05rem;
    /* Increased for better readability */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Global input, select, textarea styling for better readability */
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
    font-size: 1.05rem;
    /* Increased from 1rem for better readability */
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure minimum 16px on mobile to prevent zoom */
@media (max-width: 768px) {

    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea {
        font-size: 16px;
    }
}

.contact-form input#consent {
    min-width: 0px !important;
    width: auto;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent);
}

/* File Input Styling */
input[type="file"] {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    margin-right: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    margin-right: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]::-webkit-file-upload-button:hover,
input[type="file"]::file-selector-button:hover {
    background: #fff;
    transform: translateY(-1px);
}

input[type="file"]::file-selector-button:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* Form Validation */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: rgba(255, 0, 0, 0.3);
}

input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    position: relative;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Active Hamburger State */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--border-color);
        padding: 2rem 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 0.75rem 0;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.5) !important;
        border: none;
        border-radius: 0;
        list-style: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        transform: none !important;
        box-shadow: none;
        padding: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        max-height: 600px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li {
        list-style: none !important;
    }

    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        text-align: left;
    }

    .dropdown-divider {
        margin: 0.5rem 1rem;
    }

    /* Breadcrumb mobile styles */
    .breadcrumb-nav {
        margin-top: 60px;
        padding: 0.5rem 0;
    }

    .breadcrumb-nav .container {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form input:not([type="checkbox"]) {
        min-width: 100% !important;
        width: 100%;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card,
    .service-card {
        padding: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

/* Blog Styles */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-meta {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--accent);
}

/* Responsive Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-color);
}

/* Course Template Styles */
.course-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.course-meta div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.curriculum-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.curriculum-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.curriculum-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.instructor-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.instructor-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }

    .course-meta {
        gap: 1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 2000;
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.contact-form input#consent {
    min-width: 0px !important;
    width: auto;
}

/* Report Generator Styles */
.report-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.report-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.meta-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.meta-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.results-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.variation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.variation-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.variation-stat {
    text-align: right;
}

.winner-badge {
    background: rgba(0, 255, 148, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 148, 0.2);
    margin-left: 1rem;
}

@media print {
    body {
        background: #fff;
        color: #000;
    }

    .navbar,
    .footer,
    .btn-no-print {
        display: none !important;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .card,
    .report-container,
    .results-section {
        border: none;
        background: none;
        box-shadow: none;
    }

    .meta-item {
        border: 1px solid #ddd;
        background: #f9f9f9;
    }

    .text-gradient {
        background: none;
        -webkit-text-fill-color: #000;
        color: #000;
    }

    h1,
    h2,
    h3,
    p,
    span {
        color: #000 !important;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

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

    .nav-links a {
        font-size: 1.1rem;
    }

    .card,
    .service-card {
        padding: 1.25rem;
    }

    .icon {
        font-size: 2rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 2rem 1rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .section {
        padding: 50px 0;
    }
}


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

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

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast {
    background: rgba(15, 15, 20, 0.98);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out, fadeOut 0.3s ease-in 4.7s;
    border: 2px solid;
}

.toast.success {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 255, 148, 0.2), 0 0 20px rgba(0, 255, 148, 0.1);
}

.toast.error {
    border-color: #ff4444;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.2), 0 0 20px rgba(255, 68, 68, 0.1);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    color: var(--accent);
}

.toast.error .toast-icon {
    color: #ff4444;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.toast.success .toast-title {
    color: var(--accent);
}

.toast.error .toast-title {
    color: #ff4444;
}

.toast-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Mobile Toast Styles */
@media (max-width: 768px) {
    .toast-container {
        top: 80px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #00FF94 !important;
    /* Changed from text-muted to accent green */
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-nav a:hover {
    color: var(--text-main);
    /* Brightens to white on hover */
}

.breadcrumb-nav .separator {
    color: var(--border-color);
    user-select: none;
}

.breadcrumb-nav .current {
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
    }
}

.breadcrumb-nav a {
    color: #00FF94 !important;
}