/* basic body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

/* remove at 1 if unchanged */
.part-body{
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #eee;
    font-size: 22px;
    font-weight: 100;
    line-height: 30px;
    max-width: 800px;
    margin: auto;
}

/* basic styles*/
b, .bold, strong {
    font-weight: bold;
}

/* Range ticks */
.range-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.range-ticks span {
    font-size: 0.8em;
    color: #333;
}

.red {
    color: rgba(191, 0, 0, 1);
}

.green {
    color: rgba(0, 191, 0, 1);
}

.slidecontainer {
    width: 100%;
    /* Width of the outside container */
}

.slidecontainer label {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: block;
    font-size: 1.2em;
    color: #333;

}

/* The slider itself */
.slider {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    width: 100%;
    /* Full-width */
    height: 25px;
    /* Specified height */
    background: linear-gradient(-90deg, rgba(0, 191, 0, 1) 0%, rgba(96, 191, 0, 1) 25%, rgba(191, 191, 0, 1) 50%, rgba(191, 96, 0, 1) 75%, rgba(191, 0, 0, 1) 100%);

    outline: none;
    /* Remove outline */
    opacity: 0.7;
    /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s;
    /* 0.2 seconds transition on hover */
    transition: opacity .2s;



    border-radius: 100px;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1;
    /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    /* Slider handle height */
    background: #ffffff;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */

    content: attr(aria-valuenow);
    border-radius: 100px;

    color: #000;
}

.slider::-moz-range-thumb {
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    /* Slider handle height */
    background: #ffffff;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
    border-radius: 100px;

    content: attr(aria-valuenow);

    color: #000;
}


.slider:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* basic button styles */
button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    background-color: #0056b3;
}
button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.grey-btn {
    background-color: #ccc;
    color: #333;
}

.grey-btn:hover {
    background-color: #bbb;
}

/* spliting functionality */

.lr-split-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.lr-split-container > div {
    flex: 1;
    
    box-sizing: border-box;
}

/* h1 to h6 styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.bordered-left
{
    border-left: 1px solid #585858;
    padding-left: 10px;
    margin-left: 0px;
}

.bordered-right
{
    border-right: 1px solid #585858;
    padding-right: 10px;
    margin-right: 0px;
}

/* style for button or input rows */
.button-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: row;
}

/*select styles */
select {
    font-size: 22px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.sub-note{
    font-size: 14px;
    color: #878787;
}

.shadow-card{
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: color 0.2s, box-shadow 0.2s,font-weight 0.2s, background-color 0.2s;
    
}

.shadow-card.hilight{
    background-color: #000226;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: 0 0px 5px rgb(0, 124, 255);
    font-weight: bold;
    color: #fff;
    
}

.equalize-space{
    width: 100%;
    height: fit-content;
}

.blue-text {
    color: #007bff;
}

.italic {
    font-style: italic;
}

.center-text {
    text-align: center;
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.gray-outline-box {
    border: 2px solid rgba(128, 128, 128, 0.12);
    border-radius: 10px;
    padding: 0px 10px;
    
}