:root {
    --primary-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    --accent-gradient: linear-gradient(to right, #00b09b, #96c93d);
    --dark-bg: #050505;
    --dark-card: rgba(20, 20, 20, 0.6);
    --neon-green: #00ff88;
    --text-color: #e0e0e0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Outfit', sans-serif;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}


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

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.2);
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a,
.dropbtn {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.dropbtn:hover {
    color: var(--neon-green);
}


.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.view-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn:hover {
    background: var(--neon-green);
    color: black;
}


.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at center, #112211 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    animation: rotate 100s linear infinite;
}

.typewriter-container h1 {
    overflow: hidden;

    border-right: .15em solid var(--neon-green);

    white-space: nowrap;

    margin: 0 auto;

    animation: typing 3.5s steps(30, end),
        blink-caret .75s step-end infinite;
    max-width: 100%;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    font-size: 6.5rem;

}

.hero p {
    font-size: 1.5rem;
    color: #888;
    max-width: 600px;
    margin-bottom: 3rem;
    z-index: 10;
    position: relative;
}

.hero .cta-group {
    z-index: 10;
    position: relative;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-green);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}


.features {
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
}

.feature-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #aaa;
    line-height: 1.6;
}


.container-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container,
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}


.dashboard-container {
    display: flex;
    min-height: 80vh;
    gap: 2rem;
}

.sidebar {
    width: 250px;
    background: var(--dark-card);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    height: fit-content;
}

.sidebar a {
    display: block;
    padding: 1rem;
    color: #888;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.sidebar a:hover,
.sidebar a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-green);
    border: 1px solid var(--glass-border);
}

.sidebar-header {


    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sidebar-header h3 {
    color: white;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.main-content {
    flex: 1;
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        z-index: 1000;
        height: 100vh;
        width: 260px;
        background: #000;

        border-right: 1px solid #333;
    }

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

    .menu-btn {
        display: block;
    }

    .sidebar-header {
        display: flex;
    }
}

.auth-container {
    max-width: 400px;
    margin: 4rem auto;
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}


input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;

    font-size: 1.1rem;

    box-sizing: border-box;
    transition: all 0.3s ease;
}

input::placeholder {
    color: #666;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

label {
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}


.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-card h3 {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card .amount {
    font-size: 2.5rem;
    color: var(--neon-green);
    font-weight: 700;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

th {
    text-align: left;
    color: #666;
    padding: 1rem;
}

td {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    color: #ddd;
}

tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


.auth-container,
.settings-container,
.admin-container,
.container {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    max-width: 800px;

}


.auth-container {
    max-width: 400px;
    margin-top: 4rem;
}

.admin-container {
    max-width: 1200px;
}


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


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid var(--neon-green);
    width: 500px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--neon-green);
    text-decoration: none;
    cursor: pointer;
}


.form-group {
    margin-bottom: 1.5rem;
}


.action-btn {
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    color: var(--neon-green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--neon-green);
    color: black;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1a1a1a;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 1001;
    overflow: hidden;
    border: 1px solid #333;
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #333;
    color: white;
}

.dropdown {
    position: relative;

}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-green);
}

.nav-profile-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 204, 108, 0.3) 100%);
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-green);
}


select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    box-sizing: border-box;
    appearance: none;

    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300ff88%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65em auto;
}

select option {
    background-color: #1a1a1a;
    color: white;
    padding: 1rem;
}


footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: auto;
    backdrop-filter: blur(10px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

footer p {
    color: #444;
    font-size: 0.85rem;
    margin: 0;
}


.otp-input {
    color: var(--neon-green) !important;
    letter-spacing: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}


input[type="email"] {
    font-family: 'Courier New', Courier, monospace;
}


.custom-select {
    position: relative;
    user-select: none;
    width: 100%;
}

.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.select-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
    flex: 1;
}

.select-trigger:hover {
    border-color: var(--neon-green);
    background: rgba(0, 0, 0, 0.6);
}

.custom-select.open .select-trigger {
    border-color: var(--neon-green);
}

.select-options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-select.open .select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option {
    display: flex;
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
    align-items: center;
    color: #ccc;
}

.option:last-child {
    border-bottom: none;
}

.option:hover {
    background: rgba(0, 255, 136, 0.1);
    color: white;
}

.option input[type="checkbox"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    accent-color: var(--neon-green);
    margin-bottom: 0;
}

.arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}


.pickup-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--neon-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.pickup-date,
.pickup-slot {
    display: flex;
    flex-direction: column;
}

.pickup-card .label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pickup-card .value {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.pickup-card .value.highlight {
    color: var(--neon-green);
}




body:has(.dashboard-container) .container-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.dashboard-container {
    display: flex;
    min-height: calc(100vh - 85px);

    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow-x: hidden;
}


.sidebar {
    width: 260px;
    background: rgba(10, 10, 10, 0.95);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100vh - 85px);
    position: sticky;
    top: 85px;

    left: 0;
    z-index: 100;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    padding: 0.8rem 0.5rem;
    height: auto;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    min-width: 30px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.toggle-btn .bar {
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.toggle-btn:hover .bar {
    background-color: var(--neon-green);
}

.menu-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.2s;
    margin-left: 0.5rem;
}

.sidebar.collapsed .menu-label {
    opacity: 0;
    width: 0;
    display: none;
}


.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 0.5rem;
    color: #888;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    overflow: hidden;
    outline: none !important;
}

.sidebar-nav a:focus,
.sidebar-nav a:active {
    outline: none !important;
    box-shadow: none !important;
}

.toggle-btn:focus,
.toggle-btn:active {
    outline: none !important;
    box-shadow: none !important;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-green);
}

.sidebar-nav a .icon {
    font-size: 1.2rem;
    min-width: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-nav a .text {
    margin-left: 0.5rem;
    opacity: 1;
    transition: opacity 0.2s;
}

.sidebar.collapsed .sidebar-nav a .text {
    opacity: 0;
    display: none;
}


.main-content {
    flex: 1;
    padding: 2rem 3rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    width: 100%;
}


.orders-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: transparent;
}

.orders-list th {
    text-align: left;
    padding: 1rem;
    color: #666;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
    background: transparent;
}

.orders-list td {
    padding: 1.2rem 1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    font-size: 0.95rem;
}

.orders-list tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.orders-list strong {
    color: white;
}

.orders-list small {
    color: #888;
}


.orders-list td:nth-child(1) {
    color: #fff;
    font-weight: 500;
}


.orders-list td:nth-child(2) {
    color: #ccc;
}


.orders-list td:nth-child(3) {
    color: #aaa;
}


.orders-list td:nth-child(4) {
    color: var(--neon-green);
    font-weight: 600;
}




.status {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.status:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.status.completed:before {
    background: var(--neon-green);
}

.status.completed {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 108, 0.15) 100%);
    color: var(--neon-green);
    border: 1.5px solid var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.status.completed:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.status.pending:before {
    background: #ffcc00;
}

.status.pending {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 180, 0, 0.15) 100%);
    color: #ffcc00;
    border: 1.5px solid #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.status.pending:hover {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
    transform: translateY(-2px);
}

.status.picked-up:before {
    background: #00c8ff;
}

.status.picked-up {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.15) 0%, rgba(0, 150, 255, 0.15) 100%);
    color: #00c8ff;
    border: 1.5px solid #00c8ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}

.status.picked-up:hover {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
    transform: translateY(-2px);
}

.status.reached-warehouse:before {
    background: #9d4edd;
}

.status.reached-warehouse {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15) 0%, rgba(140, 60, 200, 0.15) 100%);
    color: #c77dff;
    border: 1.5px solid #9d4edd;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
}

.status.reached-warehouse:hover {
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    transform: translateY(-2px);
}

.status.reached-plant:before {
    background: #ff006e;
}

.status.reached-plant {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15) 0%, rgba(200, 0, 90, 0.15) 100%);
    color: #ff4d8d;
    border: 1.5px solid #ff006e;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.3);
}

.status.reached-plant:hover {
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
    transform: translateY(-2px);
}

.status.money-sent:before {
    background: var(--neon-green);
}

.status.money-sent {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 108, 0.15) 100%);
    color: var(--neon-green);
    border: 1.5px solid var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.status.money-sent:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.status.rejected:before {
    background: #ff3333;
}

.status.rejected {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.15) 0%, rgba(200, 40, 40, 0.15) 100%);
    color: #ff6666;
    border: 1.5px solid #ff3333;
    text-shadow: 0 0 10px rgba(255, 50, 50, 0.3);
}


.modal-content {
    background: #0f0f0f;
    border: 1px solid #333;
}