.asm-main-page {
    max-width: 900px;
    margin: 32px auto;
    font-family: inherit;
    line-height: 1.6;
    color: var(--wp--style--color--text, inherit);
}

.asm-main-page h2 {
    color: var(--wp--style--color--heading, inherit);
    text-align: center;
    margin-bottom: 24px;
}

.asm-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.asm-card {
    display: block;
    padding: 32px 24px;
    border-radius: var(--wp--custom--radius-medium, 12px);
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
    text-align: center;
    border: 1px solid var(--wp--preset--color--contrast, rgba(0, 0, 0, 0.15));
    background: var(--wp--preset--color--base, transparent);
    color: var(--wp--style--color--text, inherit);
}

.asm-card:hover {
    opacity: 0.9;
}

.asm-card-primary {
    background: var(--wp--preset--color--primary, var(--wp-admin-theme-color, #1d4ed8));
    color: var(--wp--preset--color--contrast, #ffffff);
    border-color: transparent;
}

.asm-card-secondary {
    background: var(--wp--preset--color--secondary, var(--wp--style--color--surface, rgba(0, 0, 0, 0.03)));
    color: var(--wp--style--color--text, inherit);
}

.asm-form,
.asm-history-request {
    max-width: 800px;
    margin: 24px auto;
    padding: 24px;
    background: var(--wp--style--color--background, transparent);
    color: var(--wp--style--color--text, inherit);
    border: 1px solid var(--wp--preset--color--contrast, rgba(0, 0, 0, 0.12));
    border-radius: var(--wp--custom--radius-medium, 12px);
}

.asm-field-group {
    margin-bottom: 18px;
}

.asm-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--wp--style--color--text, inherit);
}

.asm-field-group input,
.asm-field-group textarea,
.asm-field-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--wp--custom--radius-small, 8px);
    border: 1px solid var(--wp--preset--color--contrast, rgba(0, 0, 0, 0.2));
    box-sizing: border-box;
    background: var(--wp--style--color--background, #ffffff);
    color: var(--wp--style--color--text, inherit);
    font: inherit;
}

.asm-field-group textarea {
    min-height: 120px;
}

.asm-submit-button {
    background: var(--wp--preset--color--primary, var(--wp-admin-theme-color, #1d4ed8));
    color: var(--wp--preset--color--contrast, #ffffff);
    border: 1px solid var(--wp--preset--color--primary, var(--wp-admin-theme-color, #1d4ed8));
    padding: 12px 22px;
    border-radius: var(--wp--custom--radius-small, 8px);
    cursor: pointer;
    font-weight: 700;
    line-height: 1.4;
}

.asm-submit-secondary {
    background: var(--wp--preset--color--secondary, rgba(0, 0, 0, 0.08));
    color: var(--wp--style--color--text, inherit);
    border-color: var(--wp--preset--color--contrast, rgba(0, 0, 0, 0.2));
}

.asm-admin-card {
    max-width: 900px;
    padding: 20px;
    background: var(--wp--style--color--background, #ffffff);
    color: var(--wp--style--color--text, inherit);
    border: 1px solid var(--wp--preset--color--contrast, rgba(0, 0, 0, 0.15));
    border-radius: var(--wp--custom--radius-small, 8px);
}
