:root {
    --redwood-red: #d62948;
    --dark-navy: #2c344b;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    /*margin-bottom: 20pt;*/
}

/* Sidebar Styling */
.sidebar {
    background-color: var(--dark-navy);
    min-height: 100vh;
    color: white;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    margin: 10px 0;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background-color: var(--redwood-red);
    border-radius: 5px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.card-header {
    background-color: var(--redwood-red);
    border-bottom: 2px solid var(--light-bg);
    font-weight: 700;
    color: var(--dark-navy);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.text-gain { color: #28a745; font-weight: bold; }
.text-loss { color: #dc3545; font-weight: bold; }

.logo-container {
    padding: 20px;
    background: white;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.header-strip {
    height: 5px;
    background-color: var(--redwood-red);
}

.price-headers{
    background-color: var(--dark-navy);
}

.heading{

    font-size: smaller,
    
}
.published{
    padding-left: 100px;
}

.chart{
    background-color: rgba(40, 167, 69, 0.1);
}

/* .theads{
    font-size: smaller;
} */

.caps{
    text-transform: uppercase;
}

.small{
    font-size: smaller;
}


.controls {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
}
select {
    padding: 8px;
    background-color: #2c3138;
    color: white;
    border: 1px solid #4a5058;
    border-radius: 4px;
}
/* Color coding for Decision column */
.buy { color: #00ff00; font-weight: bold; }
.sell { color: #ff3333; font-weight: bold; }
.hold { color: #aaaaaa; font-weight: bold; }
/* Color coding for % Change and YTD */
td.positive { color: #00ff00; font-weight: bold;}
td.negative { color: #ff3333; font-weight: bold;}

td.buy { color: #00ff00 !important; font-weight: bold; }
td.sell { color: #ff3333 !important; font-weight: bold; }
td.hold { color: #aaaaaa !important; font-weight: bold; }


.change-toggle { font-size: 0.4rem; margin-left: 5px; }
.change-toggle a { color: #8fa0b5; text-decoration: none; padding: 2px 5px; border: 1px solid #4a5058; border-radius: 3px; }
.change-toggle a.active { background-color: #4ade80; color: #1a1e23; border-color: #4ade80; font-weight: bold; }
.pos { color: #4ade80; }
.neg { color: #f87171; }

.righta{
    text-align: center;
}


/* Footer Styling */
.dashboard-footer {
    border-top: none; 
    background-color: var(--dark-navy);
}

.footer-divider {
    border-top: 1px solid #30363d;
    opacity: 1;
}

.footer-logo {
    max-height: 35px;
    opacity: 0.8;
    filter: grayscale(20%) brightness(2); /* Mutes the logo for the footer */
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #4b5563 !important;
}

.footer-link {
    color: #8fa0b5;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease;
    
}

.footer-link:hover {
    color: #de5b4a; /* Matches your active toggle button color */
}

/* Flexbox fix to keep footer at bottom of short pages */
.min-vh-100 {
    min-height: 100vh !important;
}




