.ahrm-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.ahrm-field {
    margin-bottom: 15px;
}

.ahrm-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ahrm-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.ahrm-field small {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.ahrm-button {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.ahrm-button:hover {
    background: #005a87;
}

.ahrm-result {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4e8;
    border-left: 4px solid #2ecc71;
    border-radius: 4px;
}

.ahrm-error {
    margin-top: 20px;
    padding: 10px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
}

.ahrm-suggestion {
    margin-top: 10px;
    padding: 8px;
    background: #fff3cd;
    border-radius: 4px;
}

.ahrm-suggestion.warning {
    background: #f8d7da;
    color: #721c24;
}


/* Tambahkan di assets/css/style.css */
.ahrm-result {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4e8;
    border-left: 4px solid #2ecc71;
    border-radius: 4px;
}

.ahrm-error {
    margin-top: 20px;
    padding: 15px;
    background: #f8d7da;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
    color: #721c24;
}

.ahrm-suggestion {
    margin-top: 10px;
    padding: 8px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

.ahrm-suggestion.warning {
    background: #f8d7da;
    border-left-color: #e74c3c;
}