* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.container {
    max-width: 800px;
    background: white;
    border-radius: 5px;
    width:800px;
    padding: 20px;
    box-shadow: 0 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.code-container {
    max-width: 800px;
    display: flex;
    background: white;
    border-radius: 2px;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 2px 5px rgba(0, 0, 0, 0.1);
}
h3 {
    font-size: small;
    justify-content: left;
}
.wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid grey;
}
.wrapBottom {
    display: flex;
    justify-content: right;
    align-items: end;
    width: 100%;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 2px solid grey;
}
.wrapBottom2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: smaller;
    width: 100%;
    margin-top: 150px;
    padding: 10px;
    border-radius: 2px;
    background-color: grey;
}

.add {
    text-decoration: none;
    display: inline-block;
    background: green;
    color: white;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;

}
.complete {
    text-decoration: none;
    display: inline-block;
    background: green;
    color: white;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;

}

select {
    display: inline;
    cursor: pointer;
    width: 200px;

}

.inline {
    float: left;
    margin-right: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.flex {
    display: flex;
    margin: 4px;
    gap: 1.5em;

}

.delete {
    text-decoration: none;
    display: inline-block;
    background: red;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}
.hours {
    display: inline;
    width: 100px;
}
.minutes {
    display: inline;
    width: 100px;
}