.powermatch-container {
    max-width: 900px;
    margin: 24px auto;
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

.pm-section {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #fff;
}

.pm-section label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.pm-section input, .pm-section textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.pm-actions {
    margin-top: 20px;
    text-align: center;
}

.pm-actions button {
    background: #e74c3c;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.pm-actions button:hover {
    background: #c0392b;
}

.pm-actions button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

#pm-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e74c3c;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pm-result {
    margin-top: 24px;
    border-top: 2px solid #ddd;
    padding-top: 24px;
}

.pm-ai-report {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-size: 16px;
}

.pm-ai-report h2 {
    color: #2c3e50;
    margin: 1.5em 0 1em;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 8px;
}

.pm-ai-report h3 {
    color: #34495e;
    margin: 1.2em 0 0.8em;
    font-size: 20px;
    font-weight: 600;
}

.pm-ai-report p {
    margin: 0.8em 0;
    color: #444;
}

.pm-ai-report strong {
    color: #e74c3c;
    font-weight: 700;
}

.pm-ai-report ul {
    list-style: disc;
    margin: 1em 0;
    padding-left: 24px;
}

.pm-ai-report li {
    margin-bottom: 0.6em;
    color: #555;
}

.pm-ai-report hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 1.5em 0;
}

.pm-ai-report .conclusion {
    font-style: italic;
    color: #7f8c8d;
    border-top: 1px solid #ddd;
    padding-top: 1em;
    margin-top: 2em;
}