#parent_container {
    width: 80%;
    height: 95vh;
    margin: auto;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#title {
    font-size: 1.5rem;
    color: #333333;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-decoration: underline;
    text-align: center;
}

#simulation_container {
    width: 100%;
    height: 80%;
    margin-bottom: 20px; 
}

#temp_container {
    margin-top: 10%;
    width: 100%;
    height: 80%;
    margin-bottom: 20px; 
}

#button_container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

#play-all, #next, #prev {
    margin-right: 10px;
    padding: 10px 20px; /* Add some padding */
    background-color: #3daed3;
    color: white; /* White text */
    border: none; /* Remove border */
    cursor: pointer; /* Mouse pointer on hover */
    border-radius: 5px; /* Rounded corners */
    font-size: 1em; /* Increase font size */
    transition-duration: 0.4s; /* Add a transition effect */
}

#play-all:hover, #next:hover, #prev:hover {
    background-color: #2c99ce;
}

#start {
    margin-right: 10px;
    padding: 10px 20px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition-duration: 0.4s;
    background-color: #0ab134;
}

#start:hover{
    background-color: #019c28;
}

/* Adjust button size for screens smaller than 600px */
@media (max-width: 600px) {
    #start, #play-all, #next, #prev {
        padding: 5px 10px; /* Reduce the padding */
        font-size: 0.8em; /* Reduce the font size */
    }
}
@media (max-width: 600px) {
    #title {
        font-size: 1.2rem; /* Reduce the font size */
    }
}