.container {
    width: 80%;
    margin: 0 auto;
    text-align: left; /* Izvieto saturu pa kreisi */
}

button#newWorkoutBtn {
    float: center; /* Pogu "Jauns treniņš" novieto pa labi */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Novieto logo un navigācijas izvēlni horizontāli */
}

nav {
    margin-left: 20px; /* Papildu atstarpe no kreisās puses */
}
button#confirmExercises {
    margin-left: 311px;
}

button#finishWorkout {
    margin-left: 0px;
}
button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}
#workoutLog { 
    margin-top: 1%;
    display: none;
    margin-left: 311px;
}
form {
    margin-top: 20px;
}


.form-group {
    margin-bottom: 20px;
}

input[type="number"] {
    width: 60px;
    text-align: center;
    border-radius: 10%;
}

#exerciseTimes p {
    margin: 5px 0;
}

/* Papildizvēlnes */
.papildizvelnes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.papildizvelnes > div {
    width: 30%;
    margin: 0;
    text-align: center;
}

.papildizvelnes h3 {
    margin-top: 10px;
}

.papildizvelnes img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* Footer */
footer {
    margin-top: 20px;
    text-align: center;
    background-color: #f2f2f2;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Vispārīgie stili */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header */
header {
    padding: 20px 30px;
}

.logo {
    width: 300px;
    height: auto;
    float: left;
}

nav {
    margin-top: 30px;
    text-align: center;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0 20px; /* samazināts atstarpe starp saitēm */
    font-weight: bold;
    font-size: 20px;
}

nav a:hover {
    color: rgb(168, 106, 65);
}
