/* 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 {
    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);
}


/* The slider itself */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    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;
    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;
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    /* Slider handle height */
    background: #ffffff;
    cursor: pointer;
    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;
    cursor: pointer;
    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, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    color: #333;
}


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

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;
    
}

/*Existiert via js*/
.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;
    
}



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

.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;
    
}

.margin-to-center{
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.paper-container {
    max-width: 300px;
    margin: auto;
    padding: 10px;
}

.paper-container img {
    margin: auto    ;
    height: 10vw;
}

.light-red-btn {
    background-color: #ffcccc;
    color: #800000;
}

.light-red-btn:hover {
    background-color: #ffb3b3;
    color: #800000;
}

.light-red-btn:disabled {
    background-color: #ffe6e6;
    color: #cccccc;
    cursor: not-allowed;
}

