.ankauf-rechner-container {
    max-width: 100%;
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ankauf-title {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.ankauf-table {
    width: 100%;
    border-collapse: collapse;
}

.ankauf-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.ankauf-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #dee2e6;
}

.ankauf-table tbody tr:hover {
    background: #f8f9fa;
}

.gewicht-input {
    width: 120px;
    padding: 6px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.gewicht-input:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.kurs-value {
    font-weight: 500;
    color: #28a745;
}

.wert-cell {
    font-weight: 600;
    color: #007bff;
}

.total-row {
    background: #e9ecef;
    font-size: 16px;
}

.total-row td {
    padding: 15px 12px;
}

#gesamtwert {
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
}

.hinweis {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    color: #856404;
}

@media (max-width: 768px) {
    .gewicht-input {
        width: 80px;
    }
    
    .ankauf-table th,
    .ankauf-table td {
        padding: 8px 6px;
        font-size: 14px;
    }
}