/* Common Header Navigation Styles */
.header-container {
    background: linear-gradient(120deg, rgb(10, 8, 41) 0%, rgb(26, 26, 92) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-bottom: 1px solid rgba(75, 75, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 65px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Ensure body has proper padding for fixed elements */
body {
    padding-top: 70px !important;
    padding-bottom: 90px !important;
}

/* User profile styles */
.user-profile {
    display: flex;
    align-items: center;
    color: white;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #4545ff;
}

/* Navbar brand styles */
.navbar-brand {
    display: flex;
    align-items: center;
    min-width: 40px;
    margin-right: 0;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.navbar-brand span {
    font-family: 'Orbitron', sans-serif;
    color: white;
    font-size: 1.1rem;
    margin-left: 8px;
}

/* Page title styles */
.page-title {
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    color: white;
    margin: 0;
    position: relative;
    white-space: nowrap;
}

/* Ensure consistent layout for all headers */
.header-container .row {
    width: 100%;
    margin: 0 auto;
}

.header-container .d-flex {
    align-items: center;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .navbar-brand img {
        width: 40px;
        height: 40px;
    }
    
    .page-title {
        font-size: 1.1rem;
    }
}

/* History link styles */
.history-link {
    color: #ff6b33;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 107, 51, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 107, 51, 0.2);
}

.history-link:hover {
    color: #ff8c5a;
    background-color: rgba(255, 107, 51, 0.25);
    transform: translateY(-1px);
}

.history-link i {
    font-size: 1rem;
} 