:root {
    --terracotta: #D67D5C;
    --forest: #1A3026;
    --sand: #F9F7F2;
}
.hmc-register {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px;
    color: var(--forest);
    font-family: system-ui, -apple-system, sans-serif;
}
.hmc-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--forest);
}
.hmc-search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hmc-search-input {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    outline: none;
}
.hmc-search-input:focus {
    border-color: var(--terracotta);
}
.hmc-search-btn {
    background: var(--forest);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.hmc-search-btn:hover {
    background: var(--terracotta);
}
.hmc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.hmc-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f0ede8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.hmc-kategorie {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    opacity: 0.4;
}
.hmc-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 4px 0;
    font-family: Georgia, serif;
}
.hmc-beschreibung {
    opacity: 0.6;
    font-size: 0.875rem;
    max-width: 400px;
    margin-top: 6px;
}
.hmc-status-wrap {
    text-align: right;
}
.hmc-status {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: italic;
    margin-bottom: 6px;
}
.hmc-id {
    font-size: 10px;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: monospace;
}
.hmc-empty {
    text-align: center;
    opacity: 0.4;
    padding: 5rem 0;
}