/**
 * UMT Public CSS
 * 
 * SaaS-styled design for the 10 frontend tools.
 */

 .umt-frontend-tool {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.umt-tool-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

.umt-tool-header h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 24px;
}

.umt-privacy-notice {
    font-size: 13px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 8px;
}

.umt-notice {
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}
.umt-unavailable {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.umt-tool-body {
    padding: 30px;
}

.umt-form-group {
    margin-bottom: 20px;
}
.umt-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}
.umt-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
}

.umt-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}
.umt-btn:hover {
    background: #2980b9;
}
.umt-btn.umt-pdf { background: #e74c3c; }
.umt-btn.umt-pdf:hover { background: #c0392b; }
.umt-btn.umt-csv { background: #27ae60; }
.umt-btn.umt-csv:hover { background: #219653; }
.umt-btn.umt-print { background: #95a5a6; }
.umt-btn.umt-print:hover { background: #7f8c8d; }

.umt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.umt-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}
.umt-card-title {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}
.umt-card-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.umt-ai-insights {
    margin-top: 30px;
    padding: 20px;
    background: #e1f5fe;
    border-left: 5px solid #03a9f4;
    border-radius: 4px;
}
.umt-ai-insights h3 {
    margin-top: 0;
    color: #01579b;
}

.umt-tool-exports {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Conversion Optimization Suite New Styles */
.umt-form-desc { font-size: 14px; color: #6c757d; margin-bottom: 25px; }
.umt-alert { padding: 12px 15px; border-radius: 4px; margin-bottom: 20px; }
.umt-alert-error { background: #fdeaea; color: #d63638; border: 1px solid #d63638; }
.umt-alert-warning { background: #fff8e5; color: #856404; border: 1px solid #ffeeba; }

.umt-funnel-viz { display: flex; flex-direction: column; align-items: center; background: #fff; padding: 30px; border: 1px solid #e9ecef; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.umt-funnel-step { width: 100%; max-width: 400px; background: #3498db; color: #fff; text-align: center; padding: 15px; border-radius: 4px; transition: transform 0.2s; }
.umt-funnel-step:hover { transform: scale(1.02); }
.umt-fs-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.umt-fs-val { font-size: 28px; font-weight: bold; }
.umt-fs-final { background: #27ae60; }
.umt-funnel-arrow { text-align: center; padding: 15px; font-weight: bold; color: #34495e; }

.umt-score-excellent { background: #00a32a !important; }
.umt-score-good { background: #72aee6 !important; color: #1d2327 !important; }
.umt-score-average { background: #f5c518 !important; color: #1d2327 !important; }
.umt-score-poor { background: #d63638 !important; }

.umt-sim-card { background: #e8f5e9; border-color: #c8e6c9; }
