/* assets/css/style.css */
#apm-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.apm-controls {
    text-align: center;
    margin-bottom: 20px;
}

#apm-image-input {
    display: none;
}

.apm-controls label.button {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s;
}

.apm-controls label.button:hover {
    background: #005177;
}

#apm-preview-container img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#apm-result {
    margin-top: 20px;
}

/* Result Card Styles */
.apm-result-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #0073aa;
}

.apm-result-card.warning {
    border-left-color: #fca901; 
}

.apm-result-card.unclear {
    border-left-color: #d63638;
}

.apm-confidence-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background: #28a745;
    margin-left: 10px;
}

.apm-confidence-badge.low {
    background: #fca901;
    color: #333;
}
