#price-calculator {
    font-family: Arial, sans-serif;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#price-calculator h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
}

#price-calculator label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

#price-calculator input,
#price-calculator select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#price-calculator input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

#price-calculator input[type="range"] {
    width: 100%;
}

#price-calculator p {
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.additional-cost-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#result-summary {
    text-align: center;
    padding: 40px;
    margin: 40px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

#chart-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    padding: 20px;
}

#custom-vat-container {
    margin-top: 10px;
}

#custom-vat {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Formatierung für numerische Eingaben */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Button Styles */
.calculator-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.reset-button {
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reset-button:hover {
    background-color: #d32f2f;
}

.pdf-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pdf-button:hover {
    background-color: #45a049;
}

.pdf-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#cost-chart {
    max-height: 400px;
    width: 100% !important;
    height: 100% !important;
}

.calculator-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 12px;
}

.calculator-copyright a {
    color: #4CAF50;
    text-decoration: none;
}

.calculator-copyright a:hover {
    text-decoration: underline;
}

/* Job-Name Pflichtfeld Styling */
#job-name:required {
    border-color: #4CAF50;
}

#job-name:required:invalid {
    border-color: #f44336;
}