.light-theme{
    --primary-bg-color: #ededed;
    --secondarly-bg-color: #b5b2b2;
    --primary-table-color: #d8d8d8;
    --secondary-table-color: #a5a5a5;
    --primary-text-color: #1c1b1b;
    --secondary-text-color: #232222;


    --nav-hover-bd-color : #5d89ff;
}

.dark-theme{
    --bg-color : var();
    --primary-bg-color : #070d22;
    --secondarly-bg-color : #1c1c2b;
    --primary-table-color: #152742;
    --secondary-table-color: #41424e;
    --primary-text-color : #ede7e7;
    --secondary-text-color : #a5a0a0;


    --nav-hover-bd-color : #222849;
}

body {
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: var(--primary-bg-color);
    color: var(--primary-text-color);
    background-repeat: no-repeat;
}

.primary-background{
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
}

.secondary-background{
    background-color: var(--secondarly-bg-color);
    color: var(--secondary-text-color);
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.nav-item:hover > a{
    background-color: var(--secondarly-bg-color);
}


/**************/
/* Form Slide */
/**************/
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-control:focus{
    box-shadow: none;
}

/* Content Body */
.content-body{
    margin-top : 10vh ;
}



/***************/
/*Form  Section*/
/***************/

/*Don't Delete !!!!!!!!!!!!*/
.form-control-invalid{
    border-color: var(#dc3545);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.invalid-feedback{
    cursor: pointer;
    display: block;
}


/***************/
/*Table Section*/
/***************/
.table-style{
    border-collapse: collapse;
    margin: 10px 0;
}

.table-style,.table-style th,.table-style td {
    border: 1px solid var(--primary-text-color);
}

.table-style th{
    background: var(--primary-table-color);
    color: var(--primary-text-color);
    padding: 5px 10px;
}

.table-style tr:nth-child(even) td{
    background: var(--secondary-table-color);
}

.table-style tr td input{
    padding: 5px 8px;
    border: none;
    outline: none;
    width: 100%;
    background-color: transparent;
    color: var(--primary-text-color);
}

table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
    cursor: default;
}

.view-table tbody tr th {
    text-space: nowrap;
}

.view-table tbody tr td {
    padding: 5px 10px;
    text-space: nowrap;
}


/***************/
/*Chart Section*/
/***************/
.chart-container {
    position: relative;
    /*margin: auto;*/
    height: 100%;
    width: 100%;
}
