/* White border for inputs inside course cards */
.course input[type="number"] {
    border: 2px solid #fff;
    background-color: #01162b;
    color: #fff;
}
body { 
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; 
    padding: 20px; 
    color: #01162b;
    background-color: #d2dbeb;
}
.course { 
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); 
    padding: 16px;
    color: white;
    text-align: center;
    background-color: #01162b;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bar { 
    height: 10px; 
    background: #6a90b4; 
    margin-bottom: 5px; 
}
.controls { 
    display: flex; 
    gap: 6px; 
    margin-bottom: 10px; 
    align-items: center;
    flex-wrap: wrap;
}
/* Grid for course cards */
#courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

#reset-message {
     color: #01162b; 
     font-weight: bold; 
}
.timer-box { 
    border: 2px dashed #01162b; 
    padding: 10px; 
    margin-top: 20px; 
}



button, input, select, option {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #01162b;
    color: white;
    cursor: pointer;
}

/* Make edit and undo buttons smaller and fit inside course card */
#edit, #undo {
    padding: 6px 10px;
    font-size: 14px;
    min-width: 60px;
    margin-left: 4px;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}


button[onclick="addCourse()"] {
    margin-bottom: 20px;
}

#edit, #undo {
    background-color: #6a90b4;
    color: #01162b
}