.gh-ankauf-form-wrapper {
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #fff;
}
.gh-ankauf-form-wrapper h2 {
    margin-top: 0;
}
.gh-ankauf-form-wrapper .form-field {
    margin-bottom: 15px;
}
.gh-ankauf-form-wrapper label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.gh-ankauf-form-wrapper input[type="text"],
.gh-ankauf-form-wrapper input[type="email"],
.gh-ankauf-form-wrapper input[type="tel"],
.gh-ankauf-form-wrapper textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: #000;
}
.gh-ankauf-form-wrapper textarea {
    height: 120px;
}
.gh-ankauf-form-wrapper .form-submit {
    margin-top: 20px;
}
.gh-ankauf-form-wrapper button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.gh-ankauf-form-wrapper button:hover {
    background-color: #005177;
}
.gh-form-response {
    margin-top: 15px;
    font-weight: bold;
}

.gh-acceptance-field {
    margin-bottom: 10px !important;
}
.gh-acceptance-field label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: normal !important;
    cursor: pointer;
}
.gh-acceptance-field input[type="checkbox"] {
    margin: 0 !important;
    width: auto !important;
}
.gh-ankauf-form-wrapper a {
    color: #fff;
    text-decoration: underline;
}
.gh-ankauf-form-wrapper a:hover {
    text-decoration: none;
}

/* Mosparo responsiveness */
[id^="mosparo-box-"],
.mosparo__container,
.mosparo__box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.mosparo__container * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.gh-ankauf-type-parts,
.gh-ankauf-type-wheels,
.gh-ankauf-type-cars {
    display: none;
}

/* Accordion Styles */
.gh-part-item {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #f9f9f9;
    color: #000;
}
.gh-part-header {
    padding: 10px 15px;
    background: #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.gh-part-header:hover {
    background: #e5e5e5;
}
.gh-part-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.gh-remove-part {
    color: #cc0000;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.2s;
}
.gh-remove-part:hover {
    background: #ffcccc;
}
.gh-part-body {
    padding: 15px;
    display: none;
}
.gh-part-item.active .gh-part-body {
    display: block;
}
.gh-part-item.active .gh-part-header {
    border-bottom: 1px solid #ccc;
    background: #e0e0e0;
}
.gh-part-toggle {
    font-size: 12px;
    transition: transform 0.3s;
}
.gh-part-item.active .gh-part-toggle {
    transform: rotate(180deg);
}

.gh-add-part {
    margin-bottom: 20px;
    padding: 8px 15px;
    background-color: #666;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.gh-add-part:hover {
    background-color: #444;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}
.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    margin-bottom: 0;
}
.radio-group input[type="radio"] {
    margin: 0;
}

/* Address Section & Flex Rows */
.gh-address-section h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.2em;
}
.gh-form-row {
    display: flex;
    gap: 15px;
}
.gh-flex-1 { flex: 1; }
.gh-flex-2 { flex: 2; }
.gh-flex-3 { flex: 3; }

/* Admin DB Dashboard Styles */
.gh-db-admin-wrapper {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    color: #333;
    margin: 20px 0;
}
.gh-db-admin-wrapper label {
    color: #333;
}
.gh-db-admin-wrapper input[type="text"],
.gh-db-admin-wrapper input[type="date"] {
    background: #fff;
    color: #000;
}
.gh-db-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.gh-db-item {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
}
.gh-db-column p {
    margin: 0 0 8px 0;
}
.gh-db-column strong {
    color: #000;
}
@media (max-width: 768px) {
    .gh-db-content {
        grid-template-columns: 1fr !important;
    }
}
