@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Centrowanie treści */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Styl dla kontenera */
.container {
    max-width: 600px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Styl dla selektów */
select {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 5px;
    border-radius: 3px;
    display: inline-block;
    vertical-align: top; /* Wyrównanie selektów */
}

/* Styl dla przycisku */
button {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 3px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Styl dla harmonogramu */
#harmonogram {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    display: none; /* Ukryj ramkę harmonogramu na początku */
}

/* Styl dla harmonogramu, gdy jest wynik */
#harmonogram.show {
    display: block; /* Wyświetl ramkę harmonogramu, gdy jest wynik */
    border: 1px solid #ccc;
}

/* Styl dla checkboxa */
#harmonogram input[type="checkbox"] {
    margin-right: 5px;
}
