/* CSS für das Design des TB-SpeedCalculator-Plugins */

#tb-speedcalculator {
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#tb-speedcalculator h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

#tb-speedcalculator p {
    font-size: 16px;
    margin-bottom: 15px;
}

#tb-speedcalculator input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#tb-speedcalculator select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#tb-speedcalculator button {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

#tb-speedcalculator button:hover {
    background-color: #005bbf;
}

#tb-speedcalculator #result {
    font-size: 18px;
    margin-top: 15px;
}

#tb-speedcalculator ul {
    list-style: none;
    padding: 0;
}

#tb-speedcalculator ul li {
    font-size: 16px;
    margin-bottom: 5px;
}
