/* Update the .wizard container */
.wizard {
    display: flex; /* Use flexbox to manage container layout */
    width: 99.7%;
    min-height: 80vh;
    margin: 0 auto;
    padding: 2px;
    background-color: #f0f0f0;
    border: 1px solid #002f46;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Style for the left sidebar */
#graphLeftBarArea {
    width: 300px; /* Set a minimum width for the left sidebar */
    background-color: #0b546a;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(223, 220, 219);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: width 0.3s ease; /* Add a smooth transition for width change */
    position: relative; /* Add relative positioning */
}

/* Style for the right sidebar */
#graphRightBarArea {
    width: 200px; /* Set a minimum width for the right sidebar */
    background-color: #0b546a;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: width 0.3s ease; /* Add a smooth transition for width change */
    overflow-x: hidden; /* Hide content overflowing to the right */
    position: relative; /* Add relative positioning */
}

/* Style for the sidebar title */
.sidebar-title-right, .sidebar-title-left  {
    background-color: #002f46;
    color: #b5f1ff;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    font-size:22px;
}

.sidebar-title-left {
	border-top-left-radius: 10px;
}

.sidebar-title-right {
	border-top-right-radius: 10px;
}


/* Style for the icons and text in the left sidebar */
#graphLeftBarArea a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 0;
    position: relative; /* Add relative positioning */
}

/* Style for the icons and text in the right sidebar */
#graphRightBarArea a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 0;
    position: relative; /* Add relative positioning */
}

/* Style for the minimize icon in the left sidebar */
#minimizeSidebar {
    position: absolute;
    top: 2px;
    right: 2px;
    color: #fff;
}

/* Style for the minimize icon in the right sidebar */
#minimizeRightSidebar {
    position: absolute;
    top: 2px;
    left: 2px;
    color: #fff;
}

/* Additional styles for the middle area (chart area) */
#graphMainArea {
    flex-grow: 1; /* Allow the middle area to grow and take available space */
    background-color: #f3fffc;
    padding: 10px;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(85, 85, 85);
}

/* Style for the left sidebar when minimized */
#graphLeftBarArea.minimized {
    width: 70px !important; /* Collapsed width for the left sidebar */
    min-width: 70px !important;
}

/* Style for the minimized state of the right sidebar */
#graphRightBarArea.minimized {
    width: 70px !important; /* Collapsed width for the right sidebar */
    min-width: 70px !important;
}

#iconsLeftSideBar, #iconsRightSideBar {
	margin-top: 100px;
	font-size: 50px;
}
#iconsLeftSideBar a, #iconsRightSideBar a {
	padding: 20px 10px;
	margin: 50px 0;
}


/*left bar content */
#leftBarContent {
	width: 100%;
	height: 95%;
}

/* Style for the accordion container */
#accordionExample {
    display: flex;
    flex-direction: column;
    height: 500px;
    max-height: 500px ;
    width: 99%;
    overflow-y: auto; /* Enable vertical scrolling for the accordion */
}

#emptyAccordionMessage {
	height: 400px;
    width: 140px;
    border: 1px #fff dashed;
}

/* Style for the "Add Chart" area */
#addChartArea {
    height: 5%; /* Adjust the height percentage as needed */
    background-color: #f0f0f0; /* Add your preferred background color */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    border-top: 1px solid #ddd; /* Add a top border */
    padding: 5px;
}

/* Style for the "Add Chart" button inside the "Add Chart" area */
#addChartButton {
    font-size: 16px; /* Customize the font size */
    padding: 10px 20px; /* Add padding as needed */
    background-color: #007bff; /* Customize the button background color */
    color: #fff; /* Customize the button text color */
    border: none;
    cursor: pointer;
    border-radius: 5px; /* Add border radius for a rounded button */
}

/* Style for the "Add Chart" button on hover */
#addChartButton:hover {
    background-color: #0056b3; /* Customize the button background color on hover */
}


/*smart-wizard custom styling*/
#smartwizard {
  height: 100%;
}

#smart-wizard .tab-content .tab-pane {
  min-height: 100%;
  overflow-y: auto; /* Add scroll if content exceeds the height */
}


.accordion-body {
	background-color: #f3fffc;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
	color:#002f46;
}

#minimizeSidebar:hover, #minimizeRightSidebar:hover, #expandCollapseGraph:hover{
	color:rgb(0, 0, 0);
 	text-shadow: -1px 1px 0 #41ba45,
	1px 1px 0 rgb(245, 177, 158),
	1px -1px 0 rgb(166, 221, 220),
	-1px -1px 0 rgb(237, 236, 192);
}

/** begin ajax loaders **/

 @keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-moz-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-webkit-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @-o-keyframes rotate-loading {
            0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
            100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
        }

        @keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-moz-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-webkit-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }

        @-o-keyframes loading-text-opacity {
            0%  {opacity: 0}
            20% {opacity: 0}
            50% {opacity: 1}
            100%{opacity: 0}
        }
        .loading-container,
        .loading {
            height: 100px;
            position: relative;
            width: 100px;
            border-radius: 100%;
        }


        .loading-container { margin: 40px auto }

        .loading {
            border: 2px solid transparent;
            border-color: transparent #002436 transparent #002436;
            -moz-animation: rotate-loading 1.2s linear 0s infinite normal;
            -moz-transform-origin: 50% 50%;
            -o-animation: rotate-loading 1.2s linear 0s infinite normal;
            -o-transform-origin: 50% 50%;
            -webkit-animation: rotate-loading 1.2s linear 0s infinite normal;
            -webkit-transform-origin: 50% 50%;
            animation: rotate-loading 1.2s linear 0s infinite normal;
            transform-origin: 50% 50%;
        }

        .loading-container:hover .loading {
            border-color: transparent #E45635 transparent #E45635;
        }
        .loading-container:hover .loading,
        .loading-container .loading {
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
        }

        #loading-text {
            -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
            -o-animation: loading-text-opacity 2s linear 0s infinite normal;
            -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
            animation: loading-text-opacity 2s linear 0s infinite normal;
            color: #002436;
            font-family: "Helvetica Neue, "Helvetica", ""arial";
            font-size: 13px;
            font-weight: bold;
            margin-top: 45px;
            opacity: 0;
            position: absolute;
            text-align: center;
            text-transform: uppercase;
            top: 0;
            width: 100px;
        }
        
        #loading-text:hover {
			color: #E45635;
		}

/* end ajax loaders */
.addChartBtnLink:hover, .chartHistoryLink:hover, 
.showChartLink:hover, .exportChartDataLink:hover {
	color:#d04747;
 	text-shadow: -1px 1px 0 #41ba45,
	1px 1px 0 #c63d2b,
	1px -1px 0 #42afac,
	-1px -1px 0 #c6c23f;
}


.wiz-notes {
  background-color:#f2f2e5;
  border: 1px dashed #d04747; 
  border-radius:23px; 
  width: 95%; 
  height: auto; 
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.95px 4.95px 5.6px;
}

#wizFormSearch_step1,
#wizFormSearch_step2,
#wizFormSearch_step3,
#wizFormSearch_step4,
#wizFormSearch_step5,
#wizFormSearch_step6,
#wizFormSearch_step7 {
	width: 100% ;
}


#wizFormMaterialsDisplay_step2,
#wizFormPropertyDisplay_step3, 
#wizFormParametersDisplay_step4,
#wizFormMinMaxDisplay_step5,
#wizFormFormulaDisplay_step6,
#wizFormFullPreview_step9 {
  background-color:#f2f2e5;
  margin-top:20px;
  border: 1px dashed #d04747; 
  border-radius:23px; 
  width: 95%; 
  height:  170px; 
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.95px 4.95px 5.6px;
}

#wizFormDataPreview_step7,  
#wizFormDiscreetData_step8 {
  background-color:#f2f2e5;
  margin-top:20px;
  border: 1px dashed #d04747; 
  border-radius:23px; 
  width: 95%; 
  height:  300px; 
  padding: 1px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.95px 4.95px 5.6px;
  overflow: auto;
}

.wiz-results-heading {
	font-size:17px;
	font-weight:bold;
}


.modal-body {
	background: #f3fffc;
	max-height: 450px;
	overflow: auto;
}

.modal-header {
	background: #002f46;
	color: #ffffff;
}

.modal-footer {
	background: #effbff;
	color: #ffffff;
}

.modal-footer button {
	min-width: 110px;
}

#materialsModal .modal-dialog {
    max-width: 700px !important;
    margin: 30px auto; /* You can adjust the margin to center the modal */
}

.material-checkbox {
	width:25px;
	height:25px;
	margin: 0 5px;	
}

/* Style for even rows */
.data-select-even-row {
    background-color: #f2f2f2; /* Background color for even rows */
    padding: 10px;
}

/* Style for odd rows */
.data-select-odd-row {
    background-color: rgb(255, 255, 255); /* Background color for odd rows */
    padding: 10px;
}

.mini-note {
	font-size:12px;
	font-style: italic;
}

/* Style for the right bar content container */
#rightBarContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 99.7%;
}

/* Style for the content sections (wizChart and wizExport) */
#wizChart {
    flex: 10%; 
    width: 99%;
    display: inline-block;
    height: 100%; 
    padding:1px;
}


#wizExport {
    flex: 90%; 
    width: 99%;
    display: inline-block;
    height: 100%;
}  

.dashed-line {
    width: 100%; 
    height: 1px; 
    border-top: .05px dashed #f3fffc; 
    margin-top: 1px;
}

.dashed-line-center {
    width: 100%; 
    height: 5px; 
    border-bottom: .05px dashed #f3fffc; 
    margin-top: 1px;
    margin-left:20px;
}

/*increase size of checkbox */
 .checkSize{
 	width:21px;
 	height:21px;
 }
 
 /* box to display the color to be used for the dataset points on the graph */
 .graphColorBox{
 	display:inline-block;
 	width:25px !important;
 	height:25px !important;
 	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
 	margin:0px 3px;
 
 }
 
 .graphLabel{
 	font-size:17px;
 	font-weight:bold;
    color:#1A767F;
 }
 
 #chartContainer {
    width: 100%;
    height: 100%; 
}

.btn-show-graph {
	font-weight: bold;
	width: 95%;
	height: 40px;
	padding-top: 9px !important;
	padding-bottom: 5px !important;
	margin-left: 7px;
} 

.apply-btn-style {
  margin-top: 2px;
  margin-right: 5px;
  width: 180px;
  height: 30px;
  padding-left: 5px;
  padding-bottom: 24px;
}

#excelExportButton {
	min-width: 80%;
}