#bottom-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 20vw;
    height: 10vh;
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 50px; /* Center text vertically */
    font-size: 18px;
    border: solid;
    border-radius: 20px;
    z-index: 10;
}
#jobs{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body {
    background-color: rgb(234, 234, 234);
}
.job {
    z-index: 1;
    width: 95vw;
    height: 10vh;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.job-title {
    font-size: 400%;
    margin: 30px;
}
.open-button {
    position: relative;
    right: -79%;
    top: -90%;
    margin: 20px;
    scale: 3;
    z-index: 2;
}
#jobName {
    position: absolute;
    top: 35vh;
    left: 35vw;
    width: 25vw;
    height: 3vh;
    padding: 20px;
    scale: 3;
}
#createjob {
    position: absolute;
    background-color: blue;
    top: 50vh;
    left: 35vw;
    width: 25vw;
    height: 2vh;
    padding: 10px;
    scale: 3;
}
.job-Intervals {
    position: absolute;
    scale: 2;
    left: 10%;
}
.delete-button {
    position: relative;
    z-index: 2;
    margin-left: 20px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    scale: 2;
    right: -70%;
    top: -40%;
}
.intervals-details {
    display: block;
    margin: 10px 0;
}
.intervals-summary {
    font-size: 2.5em;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    padding: 6px 0;
}
.intervals-list {
    margin: 10px 0 0 20px;
    padding: 8px 0;
    font-size: 2em;
    max-height: 250px;
    overflow-y: auto;
}
.interval-entry {
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}
.interval-entry:last-child {
    border-bottom: none;
}
.job-expanded {
    min-height: 20vh;
    height: auto !important;
    background: #f9f9f9;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}