.hoa-avm-form,
.hoa-avm-dashboard,
.hoa-avm-directory {
    max-width: 980px;
    margin: 24px 0;
}

.hoa-avm-form {
    display: grid;
    gap: 16px;
}

.hoa-avm-form label {
    display: grid;
    gap: 6px;
    font-weight: 600;
}

.hoa-avm-form input,
.hoa-avm-form textarea,
.hoa-avm-form select {
    width: 100%;
    max-width: 620px;
    padding: 10px 12px;
    border: 1px solid #c9ced6;
    border-radius: 6px;
}

.hoa-avm-form button {
    width: fit-content;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    background: #1f2937;
    color: #fff;
    cursor: pointer;
}

.hoa-avm-dashboard {
    display: grid;
    gap: 28px;
}

.hoa-avm-profile-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
}

.hoa-avm-profile-preview p {
    margin: 4px 0 0;
    color: #64748b;
}

.hoa-avm-profile-image,
.hoa-avm-profile-preview img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
}

.hoa-avm-table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.hoa-avm-table th,
.hoa-avm-table td {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.hoa-avm-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.hoa-avm-artist-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}

.hoa-avm-artist-card img {
    border-radius: 50%;
}

.hoa-avm-artist-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.hoa-avm-artist-links a {
    font-weight: 600;
}

.hoa-avm-demo {
    max-width: 980px;
}

.hoa-avm-demo-avatar {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    border-radius: 50%;
    background: #1f2937;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
}

.hoa-avm-artwork-details {
    margin: 18px 0;
}

.hoa-avm-artwork-details dl {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 8px 16px;
    margin: 10px 0 0;
}

.hoa-avm-artwork-details dt {
    font-weight: 700;
}

.hoa-avm-artwork-details dd {
    margin: 0;
}

@media (max-width: 640px) {
    .hoa-avm-artwork-details dl {
        grid-template-columns: 1fr;
    }
}

.hoa-avm-notice {
    margin: 16px 0;
    padding: 12px 14px;
    border-left: 4px solid #64748b;
    background: #f8fafc;
}

.hoa-avm-success {
    border-color: #15803d;
    background: #f0fdf4;
}

.hoa-avm-error {
    border-color: #b91c1c;
    background: #fef2f2;
}
