﻿body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Main Navigation Bar */
.nav-header {
    background-color: #d72f2f;
    padding:10px 16px;
    height: 75px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.nav-brand {
    flex-shrink: 0;
}

    .nav-brand a {
        display: block;
        line-height: 0;
    }

.nav-logo {
    height: 44px;
    width: auto;
}

/* Right Side Content */
.nav-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Info Cards */
.info-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    height: 34px;
}

    .info-card.outlined {
        border: 1px solid #ff9c9c;
        border-radius: 4px;
    }

.info-label {
    color: #ff9c9c;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.info-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.wallet-icon {
    width: 20px;
    height: 20px;
}

/* Separator */
.nav-separator {
    width: 1px;
    height: 36px;
    background-color: #b8081e;
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 34px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-btn:hover {
        opacity: 0.8;
    }

    .action-btn img {
        width: 24px;
        height: 24px;
        display: block;
    }

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background-color: #ffbe17;
    border-radius: 4px;
}

/* Main Content Area */
.main-content {
    min-height: calc(100vh - 60px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-header {
        height: auto;
        padding: 12px 16px;
    }

    .main-content {
        margin-top: 70px;
    }

    .nav-content {
        gap: 10px;
    }

    .info-label,
    .info-value {
        font-size: 14px;
    }

    .action-btn img {
        width: 20px;
        height: 20px;
    }

    .nav-actions {
        gap: 8px;
    }
}

@media (max-width: 450px) {
    .nav-header {
        padding: 8px 12px;
    }

    .main-content {
        margin-top: 60px;
    }

    .nav-logo {
        height: 36px;
    }

    .info-card {
        padding: 4px 8px;
    }

    .info-label,
    .info-value {
        font-size: 11px;
    }

    .wallet-icon {
        width: 16px;
        height: 16px;
    }

    .action-btn {
        width: 28px;
        height: 24px;
    }

        .action-btn img {
            width: 18px;
            height: 18px;
        }

    .nav-actions {
        gap: 4px;
    }

    .nav-separator {
        height: 28px;
    }

    .notification-badge {
        width: 6px;
        height: 6px;
    }
}
