body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.counter {
    width: 100px;
    height: 100px;
    background-color: #007BFF;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 10px;
    transition: background-color 0.3s ease;
}

.counter#reverseStopwatch {
    background-color: #FF5733;
}

.counter:hover {
    background-color: #0056b3;
}

.counter-text {
    text-align: center;
    margin-bottom: 20px;
}

.counter-text div {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

.timer {
    font-size: 36px;
    margin: 20px 0;
    color: #333;
}

#counters-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.counter-display {
    background-color: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
