body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #ffffff, #40e0d0); /* Gradient od białego do turkusowego, spójny z resztą aplikacji */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 {
    color: #333;
}

/* Kontener dla wykresów */
.chart-container {
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin-top: 10px;
    position: relative;
}

canvas {
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    background-color: #fff;
    display: block;
}

.input-container {
    margin-bottom: 20px;
}

label {
    margin-right: 10px;
    display: block;
}

.force-label {
    color: blue;
    font-weight: bold;
}

.distance-label {
    color: green;
    font-weight: bold;
}

input[type="number"], select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100px;
}

button {
    padding: 10px 20px;
    background: linear-gradient(to right, #32cd32, #006400); /* Spójny gradient z resztą aplikacji */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: linear-gradient(to right, #2cb82c, #005a00); /* Ciemniejszy gradient przy hover */
}

.forces-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}