/* Globalne style */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f9; /* Jasnoszary */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 500px; /* Maksymalna szerokość kontenera */
    padding: 20px;
}

.stopwatch-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#timeDisplay {
    font-size: 4em; /* Większe cyfry */
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Cień do cyfr */
}

.buttons {
    margin-top: 20px;
}

button {
    background-color: #001933;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #004080;
}

/* Responsywność */
@media (max-width: 600px) {
    #timeDisplay {
        font-size: 3.5em; /* Zmniejszono czcionkę na mniejszych ekranach */
    }

    button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 400px) {
    #timeDisplay {
        font-size: 3em; /* Jeszcze mniejsze czcionki na bardzo małych ekranach */
    }

    button {
        font-size: 12px;
        padding: 6px 12px;
    }
}
