
:root {
    /* Theme Colors - Light */
    --primary-color: #6366F1;
    --accent-color: #3f83f8;
    --link-color: #2563eb;
    --text-color: #333333;
    --background-color: #ffffff;
    --nav-gradient: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    --table-header-bg: #f2f2f2;
    --button-bg: var(--accent-color);
    --button-text: #ffffff;
    --process-bg: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    --border: black;
}

body.dark-mode {
    /* Theme Colors - Dark */
    --primary-color: #90caf9;
    --accent-color: #42a5f5;
    --link-color: #90caf9;
    --text-color: #f0f0f0;
    --background-color: #121212;
    --section-bg: #1e1e1e;
    --nav-gradient: linear-gradient(120deg, #2c3e50 0%, #4b79a1 100%);
    --table-header-bg: #333333;
    --button-bg: #3a3a3a;
    --button-text: #ffffff;
    --process-bg: linear-gradient(120deg, #2c3e50 0%, #4b79a1 100%);
    --border: white;
}

/* NavBar */
body {
    font-family: 'Inter', sans-serif;
    /* color: var(--text-color); */
    /* background-color: var(--background-color); */
    margin: 0;
    padding: 0;
}
nav {
    background-image: var(--nav-gradient);
    transition: background-image 0.3s ease;
    width: 100vw;
    height: 60px;
}
.navContainer {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    /* padding: 5px; */
}
.logoConatiner {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.navHead {
    font-size: 1.5rem;
}
.navImg {
    width: 2rem;
}
.navImage {
    width: 120%;
}
.navTag {
    list-style-type: none;
}
.navTag {
    display: flex;
    gap: 1rem;
}
#tag, .line{
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
#tag:hover {
    color: black;
}
a {
    text-decoration: none;
    /* color: black; */
}

/* Apply dynamic text color */
.navHead,
.navTag a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Theme Toggle Styles */
.theme-toggle-container {
    display: flex;
    align-items: center;
    margin: 1rem;
}

.checkbox {
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    background-color: #111;
    width: 60px;
    height: 30px;
    border-radius: 50px;
    position: relative;
    /* padding: 10px; */
    /* gap: 5px;   */
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.fa-moon {
    color: #bcbcbc;
    font-size:x-large;
}

.fa-sun {
    color: #f39c12;
    font-size:x-large;
}

.ball {
    background-color: #fff;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 1px;
    top: 1px;
    border-radius: 50%;
    transition: transform 0.2s linear;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.checkbox:checked + .checkbox-label .ball {
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
}