body {
    background-color: black;
    color: white;
    font-family: 'Montserrat', sans-serif;
}
.card.shadow-lg.border-0.rounded-4.p-4{
    background-color: #222;
    color: #fff;
}
.card {
    background-color: #ffffff;
    color: black;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.logo {
    width: 100%;
    display: block;
    margin: 0 auto 15px;
}
.btn-primary {
    background-color: #c82030;
    border-color: #c82030;
    transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
    background-color: darkred;
    border-color: darkred;
    transform: scale(1.05);
}
.input-group-text {
    background-color: #333;
    border-color: #444;
    color: white;
    cursor: pointer;
}
.form-control {
    /*background-color: #333;*/
    /*border-color: #444;*/
    /*color: white;*/
    transition: all 0.3s ease-in-out;
}
.form-control:focus {
    border-color: #c82030;
    box-shadow: 0 0 10px #c82030;
}
.form-control::placeholder {
    color: #bbb;
}
.sidebarScroll{
    overflow-y: scroll;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    background-color: #222;
    color: white;
    padding-top: 20px;
}
.sidebar a, .sidebar .dropdown #dropdownMicroProcessorTrigger  {
    display: block;
    color: white;
    padding: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.sidebar a:hover, .sidebar .active, .sidebar .dropdown #dropdownMicroProcessorTrigger:hover{
    background-color: #c82030;
}
.content {
    margin-left: 260px;
    padding: 20px;
    color: #222;
}
.content .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header h3 {
    margin: 0;
}
.sidebar .logo {
    padding: 0px 10px;
    margin-bottom: 2rem;
}
.chart-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin: auto;
}
/* Custom Navbar Toggler */
.custom-toggler {
    border: 2px solid #ffffff; /* White border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

/* Toggler Icon (Three Bars) */
.toggler-icon {
    width: 25px;
    height: 3px;
    background-color: #ffffff; /* White bars */
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Hover & Active Effects */
.custom-toggler:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar, #mobileMenu {
    background: #222;
}
#mobileMenu a {
    padding: 5px 0px;
}
@media (max-width: 768px) {
    .sidebar {
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        padding-top: 0;
        display: none;
        background: #343a40;
    }
    .sidebar a {
        display: inline-block;
        padding: 10px;
    }
    .content {
        margin-left: 0;
    }
}

.error{
    color:red;
}