/* Smart Automator Pro Frontend Styles */

.sap-frontend-notice {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
}

.sap-frontend-notice.info {
    background: #e7f3ff;
    border-color: #b3d9ff;
    color: #0066cc;
}

.sap-frontend-notice.success {
    background: #e8f5e8;
    border-color: #b3d9b3;
    color: #006600;
}

.sap-frontend-notice.warning {
    background: #fff8e1;
    border-color: #ffcc80;
    color: #cc6600;
}

.sap-frontend-notice.error {
    background: #ffeaea;
    border-color: #ffb3b3;
    color: #cc0000;
}

/* Hide any admin-specific elements on frontend */
.sap-admin-only {
    display: none !important;
}

/* Optional: Style for any frontend workflow indicators */
.sap-workflow-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
    margin-left: 8px;
    opacity: 0.7;
}

.sap-workflow-indicator.inactive {
    background: #6c757d;
}

/* Minimal styling for any frontend forms */
.sap-frontend-form {
    max-width: 400px;
}

.sap-frontend-form .sap-field {
    margin-bottom: 16px;
}

.sap-frontend-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #333;
}

.sap-frontend-form input[type="text"],
.sap-frontend-form input[type="email"],
.sap-frontend-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.sap-frontend-form input[type="text"]:focus,
.sap-frontend-form input[type="email"]:focus,
.sap-frontend-form textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}