/*
App static/main.css
Aaron/Akash - Final Project - AdvWebDev
Description: Covers any non page specific styling. Such as the nav bar
*/

body 
{
    font-family: Arial, sans-serif;
    background: #f2f4f7;
    margin: 0;
    padding: 0;
}


.navbar 
{
    background: white;
    padding: 12px 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left (Home), center (Title), right (Profile + Logout) */
.nav-left,
.nav-center,
.nav-right 
{
    display: flex;
    align-items: center;
}
.nav-left { flex: 1; }
.nav-center 
{ 
    flex: 1; 
    justify-content: center; 
    display: flex; 
}
.nav-right 
{ 
    flex: 1; 
    justify-content: flex-end; 
    gap: 10px;
}
.nav-title 
{
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.nav-btn 
{
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-primary 
{
    background: #1877f2;
    color: white;
    border: none;
}

.nav-primary:hover 
{
    background: #0f5dc8;
}

.nav-home 
{
    background: transparent;
    border: 1px solid #1877f2;
    color: #1877f2;
}

.nav-home:hover 
{
    background: #e7f0ff;
}

.nav-logout 
{
    background: #d9534f;   
    color: white;
}

.nav-logout:hover 
{
    background: #b43e3a;
}
