/*
THIS IS THE SPLASH SCREEN AT THE BEGINNING, THE WELCOME PAGE
 */
.home-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1C0222, #4A1D5A);
    text-align: center;
    padding: 40px 20px;
    color: #fff;
}
.home-hero .title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
}
.home-hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    color: #d2d2d2;
}
.home-hero .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #FF8C00;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.home-hero .cta-button:hover {
    background: #d97600;
    transform: translateY(-2px);
}
.futuristic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 1200px;
    width: 100%;
}
.futuristic-card {
    background: rgba(62, 31, 91, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid #FF8C00;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.futuristic-card:hover {
    transform: translateY(-5px);
}
.futuristic-card h3 {
    color: #FF8C00;
    margin-top: 0;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255,140,0,0.5);
}
.futuristic-card p {
    line-height: 1.6;
    color: #fff;
    margin-bottom: 10px;
}
/*
THE FOOTER FOR THE SPLASH SCREEN IS DIFFERENT
 */
.footer {
    background: #3E1F5B;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #FF8C00;
    border-top: 2px solid #FF8C00;
}
/*
Light and Dark Mode for the Splash Screen
 */
body.light-mode .home-hero {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #222;
}
body.light-mode .home-hero .title {
    color: #FF8C00;
    text-shadow: none;
}
body.light-mode .home-hero .subtitle {
    color: #555;
}
body.light-mode .home-hero .cta-button {
    background: #FF8C00;
    color: #ffffff;
}
body.light-mode .home-hero .cta-button:hover {
    background: #e69500;
}
body.light-mode .futuristic-grid .futuristic-card {
    background: #ffffff;
    color: #222;
    border: 1px solid #FF8C00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
body.light-mode .futuristic-card h3 {
    color: #FF8C00;
    text-shadow: none;
}
body.light-mode .futuristic-card p {
    color: #555;
}
body.light-mode .footer {
    background: #f0f0f0;
    color: #FF8C00;
    border-top: 2px solid #FF8C00;
}
body.dark-mode .home-hero {
    background: linear-gradient(135deg, #1C0222, #4A1D5A);
    color: #f5f5f5;
}
body.dark-mode .home-hero .title {
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
}
body.dark-mode .home-hero .subtitle {
    color: #d2d2d2;
}
body.dark-mode .home-hero .cta-button {
    background: #FF8C00;
    color: #ffffff;
}
body.dark-mode .home-hero .cta-button:hover {
    background: #d97600;
}
body.dark-mode .futuristic-grid .futuristic-card {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #FF8C00;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
body.dark-mode .futuristic-card h3 {
    color: #FF8C00;
    text-shadow: 0 0 5px rgba(255,140,0,0.5);
}
body.dark-mode .futuristic-card p {
    color: #f5f5f5;
}
body.dark-mode .footer {
    background: #1a1a1a;
    color: #FF8C00;
    border-top: 2px solid #FF8C00;
}
/*
This is for the raw background of the app, not accounting for any containers
 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    color: #F5F5F5;
}
/*
This is for the header, for some reason is is only used in the stock and crypto headers.
The assumption is that the top bar will replace this
 */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    padding: 15px 20px;
    color: #d97600;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.7);
    border-bottom: 2px solid #FF8C00;
}
/*
This is for the logo, or the app name. It will adjust the boldness and size of it
 */
header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}
/*
This is for the formatting of the header, in terms of padding and the margins, also will be replaced,
or the top bar code will be thrown into the headers.
 */
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
/*
This is for the navigation items in the header
 */
header nav ul li a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}
/*
This adds a little underline to the relocation links in the header
 */
header nav ul li a:hover {
    text-decoration: underline;
}
/*
Wherever you see hero called, this is what it is referencing,
one example is the huge Dashboard line in the dashboard
 */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    background:linear-gradient(135deg, #2C003E, #4A1D5A);
}
/*
Manages the position of the hero content
If the position is fixed, it means that it stays on the same part of the screen at all times,
relative is better
 */
.hero .hero-content {
    position: relative;
    z-index: 1;
}
/*
No clue where this is used, will come back when i have more info
 */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
/*
No clue where this is used, will come back when i have more info
 */
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
/*
Only for the dashboard
 */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}
/*
The cards used in the dashboard, and stocks for some reason
 */
.card {
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    margin-bottom: 15px;
}
/*
Hover effect, added to all cards being used
 */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.6);
}
/*
For the words and symbols in the cards
 */
.card h2 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
/*
For the numerical values in the cards
 */
.card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
}
/*
For the charts in the cards
 */
#chartContainer, #expensesPieChart, #netWorthChart, #incomeChart {
    margin-top: 10px;
    overflow: hidden;
}
/*
For the value in the bill reminder
 */
#billRemindersDisplay {
    font-size: 2.5rem;
    font-weight: bold;
}
/*
For the footer, only used on the home page and login i think
 */
footer {
    background-color: #3E1F5B;
    text-align: center;
    padding: 15px;
    border-top: 2px solid #FF8C00;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.7);
    font-size: 0.9rem;
}
/*
Used for the login, it is hte container
 */
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 80px auto;
    background-color: #3E1F5B;
    padding-top: 50px;
    padding-right: 500px;
    padding-bottom: 475px;
    padding-left: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    text-align: center;
}
/*
Size of the text for the login word in the container
 */
.login-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}
/*
Gap between elements in the container
 */
.login-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/*
For the input fields, make sure they get centered
 */
.login-container input {
    width: 100%;
    padding: 12px;
    border: 1px solid #FF8C00;
    border-radius: 10px;
    background-color: #4A1D5A;
    color: #fff;
    font-size: 1rem;
}
/*
Format for the botton
 */
.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #FF8C00;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}
/*
Change in button look when hovering over it
 */
.login-container button:hover {
    background-color: #e07a00;
}
/*
For the bottom part, below the button, the register account and forgot password
 */
.login-container p {
    font-size: 0.9rem;
    margin-top: 15px;
}
/*
For the redirect text in the login
 */
.login-container a {
    color: #FF8C00;
    text-decoration: none;
}
/*
Underlines the links when hovering over it
 */
.login-container a:hover {
    text-decoration: underline;
}
/*
Light and Dark Mode for the login screen
 */
body.light-mode .login-container {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    color: #222;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
body.light-mode .login-container h2 {
    color: #222;
}
body.light-mode .login-container input {
    background-color: #f9f9f9;
    color: #000;
    border: 1px solid #FF8C00;
}
body.light-mode .login-container button {
    background-color: #FF8C00;
    color: #fff;
}
body.light-mode .login-container button:hover {
    background-color: #e69500;
}
body.light-mode .login-container p {
    color: #555;
}
body.light-mode .login-container a {
    color: #FF8C00;
}
body.dark-mode .login-container {
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
body.dark-mode .login-container h2 {
    color: #FF8C00;
}
body.dark-mode .login-container input {
    background-color: #333;
    color: #fff;
    border: 1px solid #FF8C00;
}
body.dark-mode .login-container button {
    background-color: #FF8C00;
    color: #fff;
}
body.dark-mode .login-container button:hover {
    background-color: #e07a00;
}
body.dark-mode .login-container p {
    color: #ccc;
}
body.dark-mode .login-container a {
    color: #FF8C00;
}
/*
Adapts based on screen size, do not touch.
 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    header {
        flex-direction: column;
        gap: 10px;
    }
    header nav ul {
        flex-direction: column;
        align-items: center;
    }
}
/*
For the drawer, rename to make it more specific
 */
.layout {
    margin-left: 250px;
    transition: margin-left 0.2s ease-in-out;
    width: 100%;
    padding-top: 60px;
}
/*
Drawer format
 */
.drawer {
    width: 250px;
    height: calc(100vh - 74px); /*This makes it so that the drawer can be scrollable if need be*/
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    color: #d97600;
    overflow-y: auto; /*This makes it so that the drawer can be scrollable if need be*/
    overflow-x: hidden; /*This makes it so that the drawer can be scrollable if need be*/
    transition: transform 0.2s ease-in-out;
    transform: translateX(0);
}
/*
Makes the drawer collapse
 */
.drawer.collapsed{
    transform: translateX(-250px);
}
/*
Adjusts the position of the items in the drawer
 */
.drawer ul{
    list-style: none;
    margin: 0;
}
/*
Padding between the items
 */
.drawer ul li{
    padding: 10px 15px;
}
/*
Format of the items
 */
.drawer ul li a{
    color: #d97600;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.7);
    font-weight: bold;
    font-size: 16px;
    display: flex;
}
/*
For the position of the drawer toggle, it used to have a position
 */
.drawer-toggle {
    position: fixed;
    top: 60px;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    color: #d97600;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.7);
    cursor: pointer;
    z-index: 1001;
}
/*
For the padding between the top bar and everything else, I think
 */
main{
    padding-top: 60px;
    margin-left: 250px;
    flex-grow: 1;
}
/*
Margin for when the top bar is collapsed
 */
.drawer.collapsed ~ main{
    margin-left: 0;
}
/*
From the chat css, I moved it over here in preparation of having everything in style.css
This is the container
 */
.chat-container {
    max-width: 100%;
    margin: 40px auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 90vh;
}
/*
Header for the chat
 */
.chat-header {
    padding: 16px;
    background-color: #3E1F5B;
    color: #fff;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
/*
Background for the chat
 */
.chat-window {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background-color: #f9f9f9;
}
/*
Format of the text sent
 */
.message {
    margin-bottom: 12px;
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 16px;
    clear: both;
}
/*
Also format for the user text
 */
.message.user {
    background-color: #d97600;
    float: right;
    text-align: right;
}
/*
Message recieved from the bot
 */
.message.bot {
    background-color: #fff;
    border: 1px solid #ccc;
    float: left;
    text-align: left;
}
/*
Border above input field
 */
.chat-input {
    padding: 12px;
    border-top: 1px solid #ccc;
    display: flex;
}
/*
Border around enter field
 */
.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/*
Send button format
 */
.chat-input button {
    margin-left: 8px;
    padding: 8px 16px;
    background-color: #3E1F5B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/*
Alters button when you hover over it
 */
.chat-input button:hover {
    background-color: #2b1246;
}
/*
EXPENSES PAGE, MOVED OVER FROM expenses html
 */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #fff;
    color: #000;
}
th, td {
    border: 1px solid #FF8C00;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #3E1F5B;
    color: #FF8C00;
}
.expenses-header,
.expenses-subheader {
    font-size: 1rem;
    text-align: center;
}
.expenses-file-input {
    display: block;
    margin: 20px auto;
    padding: 10px;
    background: #4A1D5A;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    cursor: pointer;
}
#output {
    margin-bottom: 40px;
}
#expenseForm {
    width: 300px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #3E1F5B;
    padding: 20px;
    border: 2px solid #FF8C00;
}
#expenseForm input,
#expenseForm button {
    padding: 8px;
    border: 1px solid #FF8C00;
}
#expenseForm label {
    color: #FF8C00;
    font-weight: bold;
}
#expenseForm button {
    background-color: #FF8C00;
    color: #3E1F5B;
    cursor: pointer;
    font-weight: bold;
}
/*
INCOME PAGE, from income html
 */
.income-container {
    max-width: 800px;
    margin: 80px auto;
    background-color: #3E1F5B;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    color: #fff;
}
.income-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.income-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin-bottom: 25px;
}
.income-form label {
    grid-column: 1 / span 2;
    margin-bottom: 3px;
    font-weight: bold;
    color: #FF8C00;
}
.income-form input,
.income-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #FF8C00;
    border-radius: 6px;
    background-color: #4A1D5A;
    color: #fff;
    font-size: 0.9rem;
}
.income-form button {
    grid-column: 1 / span 2;
    margin-top: 10px;
    padding: 12px;
    background-color: #FF8C00;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}
.income-form button:hover {
    background-color: #e07a00;
}
.income-list {
    margin-top: 15px;
}
.income-item {
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.income-item .info {
    display: flex;
    flex-direction: column;
}
.income-item .info .label {
    font-weight: bold;
    margin-bottom: 2px;
}
.charts-section {
    margin-top: 30px;
}
.chart-block {
    margin-top: 20px;
    text-align: center;
}
.chart-block h3 {
    margin-bottom: 10px;
    color: #FF8C00;
}
.chart-canvas {
    background: #4A1D5A;
    border-radius: 6px;
    display: inline-block;
    padding: 15px;
    max-width: 600px;
}
.btn-back {
    margin-top: 10px;
    display: inline-block;
    background: #2c003e;
    border: 1px solid #FF8C00;
    padding: 10px 20px;
    border-radius: 8px;
    color: #ff8c00;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
.btn-back:hover {
    background: #22002f;
}
.results-summary {
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 6px;
}
.results-summary p {
    margin: 5px 0;
}
.positive {
    color: #32CD32;
}
/*
TAX PAGE, moved over from tax css
 */
.tax-page {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #3E1F5B;
    color: #FF8C00;
}

.tax-page header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3E1F5B;
    padding: 15px 20px;
    border-bottom: 2px solid #FF8C00;
}

.tax-page header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.tax-page header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.tax-page header nav ul li a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.tax-page header nav ul li a:hover {
    text-decoration: underline;
}

.tax-page .hero {
    text-align: center;
    padding: 20px;
    background-color: #4A1D5A;
}

.tax-page .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #FF8C00;
}

.tax-page .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.tax-page .container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #3E1F5B;
    border: 2px solid #FF8C00;
    border-radius: 10px;
    color: #FF8C00;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tax-page label {
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    color: #FF8C00;
}

.tax-page input,
.tax-page select {
    width: 100%;
    padding: 10px;
    height: 40px;
    margin-bottom: 15px;
    border: 1px solid #FF8C00;
    border-radius: 5px;
    background-color: #4A1D5A;
    color: #FF8C00;
    font-size: 1rem;
    box-sizing: border-box;
}

.tax-page .container button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #FF8C00;
    border: none;
    border-radius: 5px;
    color: #3E1F5B;
    font-size: 16px;
    cursor: pointer;
    width: 50%;
    font-weight: bold;
}

.tax-page .container button:hover {
    background-color: #e07a00;
}

.tax-page .result-container {
    padding: 20px;
    background: #4A1D5A;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

/* LIGHT MODE */
body.tax-page.light-mode {
    background: #ffffff;
    color: #000;
}

body.tax-page.light-mode header {
    background-color: #f0f0f0;
    border-bottom: 2px solid #ccc;
}

body.tax-page.light-mode header .logo,
body.tax-page.light-mode header nav ul li a {
    color: #333;
}

body.tax-page.light-mode .hero {
    background-color: #ffffff;
    color: #000;
}

body.tax-page.light-mode .hero h1,
body.tax-page.light-mode label {
    color: #000;
}

body.tax-page.light-mode .hero p {
    color: #333;
}

body.tax-page.light-mode .container {
    background: #f9f9f9;
    color: #000;
    border: 2px solid #ccc;
}

body.tax-page.light-mode input,
body.tax-page.light-mode select {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

body.tax-page.light-mode .container button {
    background-color: #ffa500;
    color: #000;
}

body.tax-page.light-mode .container button:hover {
    background-color: #e69500;
}

body.tax-page.light-mode .result-container {
    background: #f5f5f5;
    color: #111;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* DARK MODE */
body.tax-page.dark-mode {
    background: #1e1e1e;
    color: #FF8C00;
}

body.tax-page.dark-mode .hero {
    background-color: #2a2a2a;
}

body.tax-page.dark-mode .container {
    background-color: #1f1f1f;
    color: #FF8C00;
    border: 2px solid #FF8C00;
}

body.tax-page.dark-mode input,
body.tax-page.dark-mode select {
    background-color: #2a2a2a;
    color: #FF8C00;
    border: 1px solid #FF8C00;
}

body.tax-page.dark-mode .container button {
    background-color: #FF8C00;
    color: #1f1f1f;
}

body.tax-page.dark-mode .container button:hover {
    background-color: #e07a00;
}

body.tax-page.dark-mode .result-container {
    background: #2a2a2a;
    color: #FF8C00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/*
SETTINGS PAGE
*/
.settings-page {
    margin-left: 250px;
    margin-top: 60px;
    padding: 20px;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    min-height: 100vh;
}
.settings-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}
.theme-options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.theme-option-label {
    font-weight: bold;
    color: #ffffff;
}
.apply-theme-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d97600;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}
.apply-theme-button:hover {
    background-color: #b46000;
}
/*
CRYPTO HTML, THERE IS A LOT
 */
.crypto-page .dashboard {
    display: grid;
    gap: 20px;
    padding-top: 80px;
    padding-left: 200px;
    max-width: 1600px;
    transition: margin-left 0.3s ease;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "portfolio portfolio market"
        "wallets wallets market"
        "walletlist walletlist analytics";
}
.drawer.collapsed ~ .dashboard {
    margin-left: 0;
}
.crypto-page .card {
    background: #3E1F5B;
    border-radius: 12px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.crypto-page .card h2 {
    margin-top: 0;
    color: #FF8C00;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Portfolio Section */
.crypto-page .portfolio-section {
    grid-area: portfolio;
    display: flex;
    flex-direction: column;
}
.crypto-page .portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.crypto-page .portfolio-chart {
    flex: 1;
    max-height: 220px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*Crypto Stats */
.crypto-page .stat {
    background: rgba(62, 31, 91, 0.7);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.crypto-page .stat:hover {
    transform: translateY(-5px);
}
.crypto-page .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-bottom: 5px;
    display: block;
}
.crypto-page .stat-value {
    font-size: 1.6em;
    font-weight: bold;
    display: block;
}
/* Crypto Market Overview */
.crypto-page .market-section {
    grid-area: market;
}
.crypto-page .market-card {
    background: rgba(62, 31, 91, 0.7);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.crypto-page .market-card h3 {
    color: #FF8C00;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}
.crypto-page .market-stat {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.crypto-page .market-stat:last-child {
    border-bottom: none;
}
/* Crypto Wallet Management */
.crypto-page .wallet-section {
    grid-area: wallets;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.crypto-page .add-wallet-form {
    background: rgba(62, 31, 91, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.crypto-page .add-wallet-form h3,
.crypto-page .test-buttons h3 {
    color: #FF8C00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}
.crypto-page .add-wallet-form input,
.crypto-page .add-wallet-form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #FF8C00;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    font-size: 0.9em;
}
.crypto-page .test-buttons {
    background: rgba(62, 31, 91, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.crypto-page .btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
/* Crypto Wallet List */
.crypto-page .wallets-list-section {
    grid-area: walletlist;
}
.crypto-page .wallet-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.crypto-page .wallet-card {
    background: rgba(62, 31, 91, 0.7);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.crypto-page .wallet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.crypto-page .wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.crypto-page .wallet-header h3 {
    color: #FF8C00;
    margin: 0;
    font-size: 1.2em;
}
.crypto-page .wallet-type {
    background: #FF8C00;
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}
.crypto-page .wallet-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}
.crypto-page .wallet-info-item {
    margin: 5px 0;
    font-size: 0.9em;
}
.crypto-page .wallet-info-item .label {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 3px;
}
.crypto-page .wallet-info-item .value {
    font-weight: bold;
}
.crypto-page .wallet-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
/*Crypto Analytics Section */
.crypto-page .analytics-section {
    grid-area: analytics;
}
.crypto-page .chart-container {
    height: 200px;
    margin-top: 15px;
    background: rgba(62, 31, 91, 0.7);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/*Crypto Buttons */
.crypto-page .btn {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
}
.crypto-page .btn:hover {
    background: #FFA500;
    transform: translateY(-2px);
}
.crypto-page .btn:active {
    transform: translateY(0);
}
.crypto-page .btn-small {
    padding: 5px 10px;
    font-size: 0.8em;
}
/* Status Colors */
.crypto-page .positive {
    color: #32CD32;
}
.crypto-page .negative {
    color: #FF4444;
}
/* QR Modal */
.crypto-page .qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.crypto-page .qr-content {
    background: #3E1F5B;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 350px;
    width: 100%;
}
.crypto-page .qr-code img {
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 5px;
    display: block;
}
/* Error Messages */
.crypto-page .error-message {
    color: #ff4444;
    padding: 10px;
    margin: 10px 0;
    background: rgba(255,0,0,0.1);
    border-radius: 6px;
    text-align: center;
}
/* Responsive Layout */
@media (max-width: 1200px) {
    .crypto-page .dashboard {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "portfolio market"
            "wallets wallets"
            "walletlist walletlist"
            "analytics analytics";
    }
}
@media (max-width: 768px) {
    .crypto-page .dashboard {
        grid-template-columns: 1fr;
        grid-template-areas:
            "portfolio"
            "market"
            "wallets"
            "walletlist"
            "analytics";
    }
    .crypto-page .wallet-section {
        grid-template-columns: 1fr;
    }
    .crypto-page .portfolio-stats {
        grid-template-columns: 1fr;
    }
    .crypto-page .wallet-info {
        grid-template-columns: 1fr;
    }
}
/*
STOCKS PAGE, also a lot
 */
.stocks-page .dashboard {
    padding-left: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 20px;
}

.stocks-page .card {
    background-color: #2a1a4a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stocks-page .full-width {
    grid-column: 1 / span 2;
}

.stocks-page .portfolio-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stocks-page .portfolio-summary div,
.stocks-page .stock-details div {
    text-align: center;
}

.stocks-page .portfolio-summary h3,
.stocks-page .stock-details h3 {
    margin-bottom: 5px;
    color: #f5a623;
}

.stocks-page .portfolio-summary p,
.stocks-page .stock-details p {
    font-size: 1.5em;
    margin: 0;
}

.stocks-page .position-table,
.stocks-page .order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.stocks-page .position-table th,
.stocks-page .position-table td,
.stocks-page .order-table th,
.stocks-page .order-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #3d2b6b;
}

.stocks-page .position-table th,
.stocks-page .order-table th {
    color: #f5a623;
}

.stocks-page .profit {
    color: #4CAF50;
}

.stocks-page .loss {
    color: #F44336;
}

.stocks-page .stock-search {
    margin-bottom: 20px;
}

.stocks-page .stock-search input {
    width: 70%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: black;
}

.stocks-page .stock-search button {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: #f5a623;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

.stocks-page .tabs {
    display: flex;
    margin-bottom: 20px;
}

.stocks-page .tab {
    padding: 10px 20px;
    background-color: #3d2b6b;
    color: white;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
}

.stocks-page .tab.active {
    background-color: #f5a623;
}

.stocks-page .tab-content {
    display: none;
}

.stocks-page .tab-content.active {
    display: block;
}

.stocks-page .order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.stocks-page .order-form label {
    display: block;
    margin-bottom: 5px;
    color: #f5a623;
}

.stocks-page .order-form input,
.stocks-page .order-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #3d2b6b;
    color: white;
}

.stocks-page .order-form button {
    grid-column: 1 / span 2;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: #f5a623;
    color: white;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

.stocks-page .order-form .buy-button {
    background-color: #4CAF50;
}

.stocks-page .order-form .sell-button {
    background-color: #F44336;
}

.stocks-page .price-chart {
    width: 100%;
    height: 300px;
    background-color: #3d2b6b;
    border-radius: 5px;
    margin-top: 20px;
    position: relative;
}

.stocks-page .stock-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stocks-page .timeframe-selector {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.stocks-page .timeframe-selector button {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #3d2b6b;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
}

.stocks-page .timeframe-selector button.active {
    background-color: #f5a623;
}

.stocks-page .refresh-button {
    background-color: #3d2b6b;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
}

.stocks-page .position-actions button {
    padding: 5px 10px;
    border-radius: 3px;
    border: none;
    color: white;
    cursor: pointer;
    margin-right: 5px;
}

.stocks-page .position-actions .buy-more {
    background-color: #4CAF50;
}

.stocks-page .position-actions .sell {
    background-color: #F44336;
}

.stocks-page .loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.stocks-page .loading:after {
    content: "Loading...";
    font-size: 1.2em;
    color: #f5a623;
}

.stocks-page .error-message {
    color: #F44336;
    text-align: center;
    margin: 10px 0;
    display: none;
}

.stocks-page .success-message {
    color: #4CAF50;
    text-align: center;
    margin: 10px 0;
    display: none;
}

.stocks-page .or-divider {
    margin: 0 10px;
    color: #f5a623;
}





















/**************************************************
LIGHT AND DARK MODE CSS ARE BELLOW
**************************************************/
/*
LIGHT MODE
 */
body.light-mode .home-hero {
    background: linear-gradient(135deg, #fdfdfd, #e0e0e0);
    color: #000;
}

body.light-mode .home-hero .title {
    color: #FF8C00;
    text-shadow: none;
}

body.light-mode .home-hero .subtitle {
    color: #333;
}

body.light-mode .home-hero .cta-button {
    background: #FF8C00;
    color: #fff;
    text-shadow: none;
}

body.light-mode .futuristic-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #FF8C00;
    color: #000;
}
body.light-mode .futuristic-card h3 {
    color: #FF8C00;
    text-shadow: none;
}

body.light-mode .futuristic-card p {
    color: #333;
}

body.light-mode .footer {
    background: #eaeaea;
    color: #FF8C00;
    border-top: 2px solid #FF8C00;
}
body.light-mode {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #000000;
}
/* General light background + text */
body.light-mode .hero,
body.light-mode .card {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #000;
}

body.light-mode .login-container {
    background-color: #f9f9f9;
    color: #000;
}

body.light-mode .login-container input {
    background-color: #ffffff;
    color: #000;
}

body.light-mode .chat-container {
    background-color: #ffffff;
}

body.light-mode .chat-header {
    background-color: #eaeaea;
    color: #333;
}

body.light-mode .chat-window {
    background-color: #fafafa;
}

body.light-mode .message.user {
    background-color: #FF8C00;
    color: #fff;
}
.chat-window,
.chat-window .message,
.chat-input input,
.chat-input button {
    color: #000;
}
body.light-mode .message.bot {
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #000;
}

body.light-mode .chat-input {
    border-top: 1px solid #ccc;
}

body.light-mode .chat-input input {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

body.light-mode .chat-input button {
    background-color: #FF8C00;
    color: #fff;
}

body.light-mode .drawer {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    color: #4A1D5A;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}

body.light-mode .drawer ul li a {
    color: #d97600;
    font-weight: bold;
    text-decoration: none;
    text-shadow: none;
    transition: color 0.3s;
}

body.light-mode .drawer ul li a:hover {
    text-decoration: underline;
    color: #b46000;
}



body.light-mode footer {
    background-color: #eaeaea;
    color: #FF8C00;
    text-shadow: none;
}

body.light-mode table {
    background: #fff;
    color: #000;
}

body.light-mode th {
    background-color: #f0f0f0;
    color: #333;
}

body.light-mode .expenses-file-input {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}


body.light-mode #expenseForm {
    background: #f9f9f9;
    border: 2px solid #ccc;
}

body.light-mode #expenseForm input,
body.light-mode #expenseForm button {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}


body.light-mode .income-container {
    background-color: #f9f9f9;
    color: #000;
}

body.light-mode .income-form input,
body.light-mode .income-form select {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

body.light-mode .chart-canvas {
    background-color: #e7e7e7;
}

body.light-mode .results-summary {
    background: #f0f0f0;
    color: #000;
}



/*
DARK MODE
 */
body.dark-mode table {
    background: #1e1e1e;
    color: #f0f0f0;
}

body.dark-mode th {
    background-color: #333;
    color: #FF8C00;
}

body.dark-mode .expenses-file-input {
    background: #2e2e2e;
    color: #FF8C00;
    border: 1px solid #444;
}

body.dark-mode #expenseForm {
    background: #1e1e1e;
    border: 2px solid #FF8C00;
}

body.dark-mode #expenseForm input,
body.dark-mode #expenseForm button {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #FF8C00;
}

body.dark-mode .income-container {
    background-color: #000;
    color: #fff;
}

body.dark-mode .income-form input,
body.dark-mode .income-form select {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #FF8C00;
}

body.dark-mode .chart-canvas {
    background-color: #2e2e2e;
}

body.dark-mode .results-summary {
    background: #2a2a2a;
    color: #fff;
}

body.dark-mode .settings-page {
    background: #121212;
    color: #ffffff;
}

body.dark-mode .theme-options-group,
body.dark-mode .theme-option-label,
body.dark-mode .settings-header {
    color: #ffffff;
}

body.dark-mode .theme-option-label input {
    accent-color: #d97600;
}

body.dark-mode .theme-options-group {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 8px;
}

body.dark-mode .crypto-page .dashboard {
    background-color: #111;
    color: #f0f0f0;
}

body.light-mode .settings-page {
    background: #ffffff;
    color: #000000;
}

body.light-mode .theme-options-group,
body.light-mode .theme-option-label,
body.light-mode .settings-header {
    color: #000000;
}

body.light-mode .theme-option-label input {
    accent-color: #4A1D5A;
}

body.light-mode .theme-options-group {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}
body.light-mode .crypto-page .dashboard {
    background-color: #fff;
    color: #000;
}

body.light-mode header {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #333;
    border-bottom: 2px solid #ccc;
}
body.light-mode header nav ul li a{
    background: #f9f9f9;
    color: #000;
}
body.light-mode .drawer ul li a {
    color: #333;
    text-shadow: none;
}
body.light-mode .drawer {
    background-color: #f5f5f5;
    color: #333;
}

body.light-mode .settings-page {
    background: #ffffff;
    color: #000000;
}

body.light-mode .theme-options-group{
    background: #f9f9f9;
    color: #000;
}

body.light-mode .theme-option-label{
    background: #f9f9f9;
    color: #000;
}
body.light-mode .settings-header {
    color: #000000;
}

body.light-mode .theme-option-label input {
    accent-color: #4A1D5A;
}

body.light-mode .theme-options-group {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

body.light-mode.crypto-page .card,
body.light-mode.crypto-page .market-card,
body.light-mode.crypto-page .add-wallet-form,
body.light-mode.crypto-page .test-buttons,
body.light-mode.crypto-page .wallet-card,
body.light-mode.crypto-page .qr-content {
    background: #f9f9f9  ;
    color: #000  ;
}

body.light-mode.crypto-page .chart-container {
    background: #f3f3f3  ;
    color: #000  ;
}

body.light-mode.crypto-page .stat {
    background: #ffffff  ;
    color: #000  ;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

body.light-mode.crypto-page .stat-label,
body.light-mode.crypto-page .wallet-info-item .label {
    color: #555  ;
}

body.light-mode.crypto-page .btn {
    background: #f5a623  ;
    color: #000  ;
}

body.light-mode.crypto-page .add-wallet-form input,
body.light-mode.crypto-page .add-wallet-form select {
    background: #ffffff  ;
    color: #000  ;
    border: 1px solid #ccc  ;
}

body.light-mode.crypto-page .qr-code img {
    background: #ffffff  ;
}

body.light-mode.crypto-page .error-message {
    background: rgba(255, 0, 0, 0.05)  ;
    color: #b00020  ;
}

body.light-mode .stocks-page .dashboard {
    background-color: #fff;
    color: #000;
}

body.light-mode .stocks-page .card {
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

body.light-mode .stocks-page .position-table th,
body.light-mode .stocks-page .order-table th {
    color: #d97600;
}



body.light-mode .stocks-page .tab.active {
    background-color: #d97600;
    color: #fff;
}

body.light-mode .stocks-page .order-form label,
body.light-mode .stocks-page .or-divider,
body.light-mode .stocks-page .loading:after {
    color: #d97600;
}

body.light-mode .stocks-page .order-form input,
body.light-mode .stocks-page .order-form select {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #ccc;
}

body.light-mode .stocks-page .order-form button {
    background-color: #d97600;
    color: white;
}

body.light-mode .stocks-page .price-chart,
body.light-mode .stocks-page .timeframe-selector button,
body.light-mode .stocks-page .refresh-button {
    background-color: #eaeaea;
    color: #000;
}

body.light-mode .stocks-page .timeframe-selector button.active {
    background-color: #d97600;
    color: white;
}

body.light-mode .stocks-page .error-message {
    color: #d32f2f;
}

body.light-mode .stocks-page .success-message {
    color: #388e3c;
}








































body.dark-mode .home-hero {
    background: linear-gradient(135deg, #000000, #2e2e2e);
    color: #fff;
}

body.dark-mode .home-hero .title {
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

body.dark-mode .home-hero .subtitle {
    color: #d2d2d2;
}

body.dark-mode .home-hero .cta-button {
    background: #FF8C00;
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

body.dark-mode .futuristic-card {
    background: rgba(40, 40, 40, 0.85);
    border: 1px solid #FF8C00;
    color: #fff;
}

body.dark-mode .futuristic-card h3 {
    color: #FF8C00;
    text-shadow: 0 0 5px rgba(255,140,0,0.5);
}

body.dark-mode .futuristic-card p {
    color: #f0f0f0;
}

body.dark-mode .footer {
    background: #1e1e1e;
    color: #FF8C00;
    border-top: 2px solid #FF8C00;
}
body.dark-mode .hero,
body.dark-mode .card {
    background: linear-gradient(135deg, #111111, #2a2a2a);
    color: #f0f0f0;
}

body.dark-mode .login-container {
    background-color: #1f1f1f;
    color: #f0f0f0;
}

body.dark-mode .login-container input {
    background-color: #2e2e2e;
    color: #fff;
}

body.dark-mode .chat-container {
    background-color: #1a1a1a;
}

body.dark-mode .chat-header {
    background-color: #2c2c2c;
    color: #fff;
}

body.dark-mode .chat-window {
    background-color: #1e1e1e;
}

body.dark-mode .message.user {
    background-color: #FF8C00;
    color: #fff;
}

body.dark-mode .message.bot {
    background-color: #2a2a2a;
    border: 1px solid #555;
    color: #f5f5f5;
}

body.dark-mode .chat-input {
    border-top: 1px solid #444;
}

body.dark-mode .chat-input input {
    background-color: #2e2e2e;
    color: #f0f0f0;
    border: 1px solid #444;
}

body.dark-mode .chat-input button {
    background-color: #444;
    color: #fff;
}

body.dark-mode .drawer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #f0f0f0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.4);
}
body.dark-mode .drawer ul li a {
    color: #ff8c00;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 4px rgba(255, 140, 0, 0.6);
    transition: color 0.3s;
}
body.dark-mode .drawer ul li a:hover {
    text-decoration: underline;
    color: #ffa733;
}
body.dark-mode footer {
    background-color: #111111;
    color: #FF8C00;
    text-shadow: none;
}
body.dark-mode {
    background: linear-gradient(135deg, #000000, #2e2e2e);
    color: #F5F5F5;
}

body.dark-mode .settings-page {
    background: #121212;
    color: #ffffff;
}

body.dark-mode .theme-options-group,
body.dark-mode .theme-option-label,
body.dark-mode .settings-header {
    color: #ffffff;
}

body.dark-mode .theme-option-label input {
    accent-color: #d97600;
}

body.dark-mode .theme-options-group {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 8px;
}
body.dark-mode header {
    background: linear-gradient(135deg, #111111, #333333);
    color: #f0f0f0;
    border-bottom: 2px solid #444;
}

body.dark-mode header nav ul li a {
    color: #f0f0f0;
    text-shadow: none;
}

body.dark-mode .drawer {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

body.dark-mode .drawer ul li a {
    color: #f0f0f0;
    text-shadow: none;
}
body.dark-mode.crypto-page .card,
body.dark-mode.crypto-page .market-card,
body.dark-mode.crypto-page .add-wallet-form,
body.dark-mode.crypto-page .test-buttons,
body.dark-mode.crypto-page .wallet-card,
body.dark-mode.crypto-page .qr-content,
body.dark-mode.crypto-page .chart-container {
    background: #1f1f1f  ;
    color: #fff  ;
}

body.dark-mode.crypto-page .stat {
    background: #292929  ;
    color: #fff  ;
}

body.dark-mode.crypto-page .stat-label,
body.dark-mode.crypto-page .wallet-info-item .label {
    color: #ccc  ;
}

body.dark-mode.crypto-page .add-wallet-form input,
body.dark-mode.crypto-page .add-wallet-form select {
    background: #333  ;
    color: #fff  ;
    border: 1px solid #FF8C00  ;
}

body.dark-mode.crypto-page .btn {
    background: #FF8C00  ;
    color: #fff  ;
}

body.dark-mode.crypto-page .qr-code img {
    background: #fff  ;
}

body.dark-mode.crypto-page .error-message {
    background: rgba(255, 0, 0, 0.1)  ;
    color: #ff4444  ;
}
body.dark-mode .stocks-page .dashboard {
    background-color: #121212;
    color: #f0f0f0;
}

body.dark-mode .stocks-page .card {
    background-color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .stocks-page .position-table th,
body.dark-mode .stocks-page .order-table th {
    color: #FF8C00;
}

body.dark-mode .stocks-page .stock-search input {
    background-color: #333;
    color: #fff;
}

body.dark-mode .stocks-page .tab {
    background-color: #333;
    color: #fff;
}

body.dark-mode .stocks-page .tab.active {
    background-color: #FF8C00;
}

body.dark-mode .stocks-page .order-form label,
body.dark-mode .stocks-page .or-divider,
body.dark-mode .stocks-page .loading:after {
    color: #f5a623;
}
body.dark-mode .stocks-page .order-form input,
body.dark-mode .stocks-page .order-form select {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
}
body.dark-mode .stocks-page .order-form button {
    background-color: #f5a623;
    color: white;
}
body.dark-mode .stocks-page .price-chart,
body.dark-mode .stocks-page .timeframe-selector button,
body.dark-mode .stocks-page .refresh-button {
    background-color: #2a2a2a;
    color: #fff;
}
body.dark-mode .stocks-page .timeframe-selector button.active {
    background-color: #f5a623;
    color: white;
}
body.dark-mode .stocks-page .error-message {
    color: #FF4444;
}
body.dark-mode .stocks-page .success-message {
    color: #32CD32;
}

.crypto-page #timeframe-selector {
    padding: 8px;
    border-radius: 5px;
    background: rgba(62, 31, 91, 0.7);
    color: white;
    border: 1px solid #FF8C00;
    margin-bottom: 10px;
}
body.light-mode.crypto-page #timeframe-selector,
body.light-mode .crypto-page #timeframe-selector {
    background: #f9f9f9;
    color: #000;
    border: 1px solid #ccc;
}
body.dark-mode.crypto-page #timeframe-selector,
body.dark-mode .crypto-page #timeframe-selector  {
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #FF8C00;
}
.crypto-page .wallets-empty-message {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}
body.light-mode .crypto-page .wallets-empty-message {
    color: #444;
}

/* PROFILE PAGE STYLES */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-header h1 {
    font-size: 2.2rem;
    color: #FF8C00;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
    margin-bottom: 10px;
}

.profile-header p {
    color: #d2d2d2;
    font-size: 1rem;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-picture-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-picture-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #3E1F5B;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid #FF8C00;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.profile-picture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-picture-preview span {
    color: #d2d2d2;
    font-size: 0.9rem;
}

.profile-upload-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF8C00;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-upload-btn:hover {
    background-color: #e07a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.profile-upload-btn input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FF8C00;
    font-weight: bold;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background-color: #3E1F5B;
    border: 1px solid #FF8C00;
    border-radius: 8px;
    color: #F5F5F5;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e07a00;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.3);
}

.profile-bio textarea {
    min-height: 100px;
    resize: vertical;
}

.profile-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #FF8C00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-submit-btn:hover {
    background-color: #e07a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.profile-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.profile-link {
    color: #FF8C00;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.profile-link:hover {
    color: #e07a00;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .profile-container {
        margin: 40px 20px;
        padding: 25px;
    }

    .profile-header h1 {
        font-size: 1.8rem;
    }

    .profile-picture-preview {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 20px 15px;
    }

    .profile-header h1 {
        font-size: 1.6rem;
    }

    .profile-picture-preview {
        width: 100px;
        height: 100px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .profile-submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

body.dark-mode .profile-container {
    background: linear-gradient(135deg, #1a1a1a, #2e2e2e);
    border: 1px solid #FF8C00;
}

body.dark-mode .profile-picture-preview {
    background-color: #2a2a2a;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background-color: #2a2a2a;
    color: #f0f0f0;
}

body.light-mode .profile-container {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    border: 1px solid #FF8C00;
    color: #333;
}

body.light-mode .profile-header h1 {
    color: #FF8C00;
    text-shadow: none;
}

body.light-mode .profile-header p {
    color: #555;
}

body.light-mode .profile-picture-preview {
    background-color: #f0f0f0;
}

body.light-mode .profile-picture-preview span {
    color: #777;
}

body.light-mode .form-group label {
    color: #FF8C00;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #FF8C00;
}

/* PROFILE*/
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-container h1 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.profile-picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-picture-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid #ddd;
}

.profile-picture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-form label {
    font-weight: bold;
    text-align: center;
}

.profile-form input[type="text"],
.profile-form input[type="file"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.upload-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upload-btn:hover {
    background-color: #45a049;
}

.submit-btn {
    background-color: #FF8C00;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #e07a00;
}

body.light-mode .profile-container {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    color: #000;
}

body.light-mode .profile-container h1,
body.light-mode .profile-form label {
    color: #222;
}

body.light-mode .profile-picture-preview {
    background-color: #f0f0f0;
    border-color: #ccc;
}

body.light-mode .profile-form input[type="text"],
body.light-mode .profile-form input[type="file"] {
    background-color: #ffffff;
    color: #000;
    border: 1px solid #ccc;
}

body.dark-mode .profile-container {
    background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
    color: #fff;
}

body.dark-mode .profile-container h1,
body.dark-mode .profile-form label {
    color: #f5f5f5;
}

body.dark-mode .profile-picture-preview {
    background-color: #444;
    border-color: #666;
}

body.dark-mode .profile-form input[type="text"],
body.dark-mode .profile-form input[type="file"] {
    background-color: #333;
    color: #fff;
    border: 1px solid #666;
}
/* Invalid Session Page, When you hit logout but try to go back */
.invalid-session-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px;
}
.session-container {
    text-align: center;
    background: rgba(62, 31, 91, 0.9);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 100%;
    border: 1px solid #FF8C00;
}
.session-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FF8C00;
}
.session-container p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #ddd;
}
.session-button {
    padding: 12px 24px;
    background-color: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}
.session-button:hover {
    background-color: #e07a00;
    transform: translateY(-2px);
}
body.light-mode.invalid-session-page {
    background: #ffffff;
    color: #000000;
}

body.light-mode .session-container {
    background: #ffffff;
    color: #000000;
    border: 1px solid #FF8C00;
}

body.light-mode .session-container h1 {
    color: #FF8C00;
}

body.light-mode .session-container p {
    color: #333333;
}

body.light-mode .session-button {
    background-color: #FF8C00;
    color: #fff;
}
/* Dark Mode */
body.dark-mode.invalid-session-page {
    background: #000000;
    color: #ffffff;
}

body.dark-mode .session-container {
    background: #000000;
    color: #ffffff;
    border: 1px solid #FF8C00;
}

body.dark-mode .session-container h1 {
    color: #FF8C00;
}
body.dark-mode .session-container p {
    color: #cccccc;
}
body.dark-mode .session-button {
    background-color: #FF8C00;
    color: #fff;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #fff;
    color: #000;
}

th, td {
    border: 1px solid #FF8C00;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #3E1F5B;
    color: #FF8C00;
}

/* BUDGET PAGE*/
.budget-page {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    color: #F5F5F5;
    min-height: 100vh;
}
.budget-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.budget-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FF8C00;
}
.budget-form input[type="month"],
.budget-form input[type="number"],
.budget-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #FF8C00;
    border-radius: 8px;
    background-color: #4A1D5A;
    color: #fff;
    font-size: 1rem;
}

.budget-form button {
    background-color: #FF8C00;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.budget-form button:hover {
    background-color: #e07a00;
}

/*LIGHT MODE*/
body.light-mode .budget-page {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #000;
}

body.light-mode .budget-form {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body.light-mode .budget-form label {
    color: #222;
}

body.light-mode .budget-form input[type="month"],
body.light-mode .budget-form input[type="number"] {
    background: #f9f9f9;
    color: #000;
    border: 1px solid #ccc;
}

/* DARK MODE */
body.dark-mode .budget-page {
    background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
    color: #fff;
}
body.dark-mode .budget-form {
    background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

body.dark-mode .budget-form label {
    color: #FF8C00;
}

body.dark-mode .budget-form input[type="month"],
body.dark-mode .budget-form input[type="number"] {
    background: #333;
    color: #fff;
    border: 1px solid #666;
}

body.dark-mode table {
    background: #1e1e1e;
    color: #f5f5f5;
}

body.dark-mode th {
    background-color: #292929;
    color: #FF8C00;
}
/*
TIPS PAGE
 */
.tips-page {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #2C003E, #4A1D5A);
    color: #F5F5F5;
    min-height: 100vh;
    padding: 20px;
}
.tips-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.tips-header h1 {
    font-size: 2.5rem;
    color: #FF8C00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
}

.filter-container {
    max-width: 300px;
    margin: 0 auto 30px;
    text-align: center;
}

.filter-container select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #FF8C00;
    background-color: #3E1F5B;
    color: #fff;
    font-size: 1rem;
}

.random-tip {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid #FF8C00;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tip-list {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tip-card {
    background: rgba(62, 31, 91, 0.9);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #FF8C00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-category {
    color: #FF8C00;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tip-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #F5F5F5;
}

body.light-mode .tips-page {
    background: linear-gradient(135deg, #ffffff, #eaeaea);
    color: #000;
}

body.light-mode .filter-container select {
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #FF8C00;
}
body.light-mode .random-tip {
    background: #fff3e0;
    color: #333;
}
body.light-mode .tip-card {
    background: #fff;
    color: #000;
}

body.light-mode .tip-text {
    color: #222;
}

body.light-mode .tip-category {
    color: #FF8C00;
}
/*DARK MODE for Tips*/
body.dark-mode .tips-page {
    background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
    color: #fff;
    padding: 30px;
    min-height: 100vh;
}
body.dark-mode .tips-header h1 {
    color: #FF8C00;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}
body.dark-mode .tips-header p {
    color: #ccc;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
}
body.dark-mode .filter-container {
    max-width: 500px;
    margin: 0 auto 30px auto;
    text-align: center;
}
body.dark-mode .filter-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FF8C00;
}
body.dark-mode .filter-container select {
    padding: 10px;
    border-radius: 6px;
    background-color: #3e3e3e;
    color: #fff;
    border: 1px solid #FF8C00;
    font-size: 1rem;
}
body.dark-mode .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #FF8C00;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    margin: 20px auto;
    display: block;
}
body.dark-mode .cta-button:hover {
    background-color: #e07a00;
    transform: translateY(-2px);
}
body.dark-mode .random-tip {
    text-align: center;
    color: #f5f5f5;
    font-size: 1rem;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
body.dark-mode .tip-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
body.dark-mode .tip-card {
    background-color: #2e2e2e;
    border: 1px solid #FF8C00;
    padding: 20px;
    border-radius: 10px;
    color: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}
body.dark-mode .tip-card:hover {
    transform: translateY(-5px);
}
/*Tip CSS*/
.tip-section-list {
    /*padding: 20px;*/
    max-width: 900px;
    margin: 0 auto;
}
.tip-category-block {
    margin-bottom: 40px;
}
.tip-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF8C00;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 4px;
}
.tip-category-list {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}
.tip-item {
    margin-bottom: 8px;
    font-size: 1rem;
    color: inherit;
}
.save-tip-btn {
    margin-top: 6px;
    padding: 6px 12px;
    background-color: #FF8C00;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}
.save-tip-btn:hover {
    background-color: #e07a00;
}
body.light-mode .save-tip-btn {
    background-color: #FF8C00;
    color: white;
}
body.light-mode .save-tip-btn:hover {
    background-color: #e07a00;
}
body.dark-mode .save-tip-btn {
    background-color: #222;
    color: #FF8C00;
    border: 1px solid #FF8C00;
}
body.dark-mode .save-tip-btn:hover {
    background-color: #333;
}
.chart-container {
    position: relative;
    height: 220px;
    width: 100%;
}

/* New Dashboard Containers*/
.goal-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.goal-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.progress-bar {
    height: 12px;
    background-color: #eee;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #FF8C00;
    border-radius: 6px;
    transition: width 0.5s;
}
.nav-profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 8px;
    vertical-align: middle;
    margin-right: 8px;
}
