body {
    background-color: #010409;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    color: #e4ebf1;
}

.mainPanel {
    display: flex;
    justify-content: center;
    height: 90%;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 15px;
}

.menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 3%;
    gap: 15px;


}

.github {
    width: 100%;
    background-image: url('Practice JS/Assets/Icon.png');
    background-size: 25px;
    /* Ensures the background image covers the entire container */
    background-repeat: no-repeat;
    /* Prevents the background image from repeating */
    background-position: center;
    /* Centers the background image */
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    padding-bottom: 100%;
    position: relative;
    height: 0;

    /* Flexbox properties for centering */
    display: flex;
    align-items: center;
    justify-content: center;
}



.choices {
    width: 100%;
    background-image: url('Practice JS/Assets/image.png');
    background-size: 25px;
    /* Ensures the background image covers the entire container */
    background-repeat: no-repeat;
    /* Prevents the background image from repeating */
    background-position: center;
    /* Centers the background image */
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    padding-bottom: 100%;
    position: relative;
    height: 0;

    /* Flexbox properties for centering */
    display: flex;
    align-items: center;
    justify-content: center;
  

}


.drawer {
    display: flex;
    flex-direction: column;
    width: 125px;
    height: 100%;
    position: fixed;
    left: -500px;
    /* Initially position the drawer off-screen */
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    transition: left 0.3s ease;
    /* Add a smooth transition effect */
    z-index: 1000;
    /* Set a high z-index value to place it above other elements */
    text-align: center;

    /* Center items vertically */
    align-items: center;
    gap: 10px;
}

.home {
    margin-top: 15px;
    width: 90%;
    height: 35px;
    background-color: #0d1117;
    border-radius: 6px;
}

.fcfs {
    width: 90%;
    height: 35px;
    background-color: #0d1117;
    border-radius: 6px;
}

.scan {
    width: 90%;
    height: 35px;
    background-color: #0d1117;
    border-radius: 6px;

}



#drawBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: filter 0.3s ease;
    cursor: pointer;
}

#drawBtn:hover {
    filter: brightness(180%);
}

#drawBtn:active {
    filter: brightness(3000%);
}

a.home {
    text-decoration: none;
    /* Add other styles as needed */
}

.filler {
    width: 100%;
    opacity: 40%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    height: 87%;
}

.inputs-title {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 20%;
    gap: 15px;
}

.title {
    height: 20%;
    width: 100%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    line-height: 1.2;

}

.titleText {
    margin-left: 10%;
    margin-top: 8%;
    font-size: 35px;
    font-weight: 550;
}

.subTitle {
    font-size: 20px;
    font-weight: 500;
    color: #21c541;
}

.author {
    margin-left: 2px;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 5px;
    opacity: 50%;
    font-style: italic;
}



.inputs {
    height: 100%;
    width: 100%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;

}

.input-title {
    margin-left: 10%;
    margin-top: 6%;
    font-size: 30px;
    font-weight: 505;
    margin-bottom: 2px;
}

.input-subtitle {
    margin-bottom: 50px;
    margin-left: 10%;
    font-size: 12px;
    font-weight: 400px;
    opacity: 80%;
}

.input-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}



input {
    background-color: #010409;
    border-radius: 5px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    height: 35px;
    color: #e4ebf1;
    text-indent: 10px;
    width: 250px;

}


input:focus {
    border: 2px solid #2f81f7;
    outline: none;
}

#labels {

    margin-bottom: 6px;

    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    opacity: 80%;
}


button {
    background-color: #238636;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    width: 70px;
    height: 30px;

}

button:hover {
    filter: brightness(120%);
    cursor: pointer;
}

button:active {
    filter: brightness(150%);
}

.solve {
    margin-top: 60px;
}

.outputs {
    height: 100%;
    width: 60%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

}

.output-title {
    margin-left: 5%;
    margin-top: 3%;
    font-size: 30px;
    font-weight: 505;
}

.table {
    height: 57%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
}

.lineGraph {
    height: auto;
    width: 90%;
    border-radius: 6px;
    border: 0.1px solid rgba(254, 254, 254, 0.2);

}

#myLineChart {
    height: 450px !important;
}

.quote {
    opacity: 60%;
    margin-top: 10px;
    margin-left: 5%;
    font-size: 15px;
    font-weight: 400;
}

.computations {
    display: flex;
    height: 25%;
    width: 100%;
    justify-content: center;
}

.compute-panel {
    display: flex;
    border-radius: 5px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    margin-top: 10px;
    height: 90%;
    width: 90%;
    gap: 5%;

}

.compute-title {
    margin-left: 5%;
    font-size: 20px;
    font-weight: 505;

}

#dataOut {
    margin-top: 25px;
    margin-left: 30px;
    margin-right: 10px;
    width: 35%;
}

.statement {
    width: 40%;
    margin-top: 50px;
    margin-left: 25px;
    margin-right: 70px;
}