/* User Guidance Styles */

/* Help Icons */
.help-icon {
    color: #007bff;
    cursor: pointer;
    margin-left: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.help-icon:hover {
    color: #0056b3;
}

/* Trial Progress Dashboard */
.trial-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.trial-progress h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.progress-item {
    margin-bottom: 15px;
}

.progress-item .progress {
    height: 8px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-item .progress-bar {
    background: linear-gradient(90deg, #fff 0%, #f8f9fa 100%);
    transition: width 0.3s ease;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Empty State Guidance */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.empty-state-icon {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 15px;
}

.empty-state h4 {
    color: #495057;
    margin-bottom: 10px;
}

.empty-state p {
    color: #6c757d;
    margin-bottom: 20px;
}

.empty-state .btn {
    margin: 5px;
}

/* Help Sidebar */
.help-sidebar {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.help-sidebar h4 {
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    color: #6c757d;
}

.help-sidebar li:last-child {
    border-bottom: none;
}

.help-sidebar li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

/* Smart Suggestions */
.smart-suggestion {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.smart-suggestion h5 {
    color: #1976d2;
    margin-bottom: 8px;
    font-weight: 600;
}

.smart-suggestion p {
    color: #424242;
    margin-bottom: 10px;
}

/* Tour Customization */
.shepherd-element {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.shepherd-content {
    padding: 20px;
}

.shepherd-title {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.shepherd-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.shepherd-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 8px;
    transition: background 0.3s ease;
}

.shepherd-button:hover {
    background: #0056b3;
}

.shepherd-button.shepherd-button-secondary {
    background: #6c757d;
}

.shepherd-button.shepherd-button-secondary:hover {
    background: #545b62;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trial-progress {
        padding: 15px;
    }
    
    .empty-state {
        padding: 30px 15px;
    }
    
    .help-sidebar {
        padding: 15px;
    }
    
    .shepherd-content {
        padding: 15px;
    }
}

/* Feature Highlight */
.feature-highlight {
    position: relative;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    background: rgba(0, 123, 255, 0.05);
}

.feature-highlight::before {
    content: "💡 New Feature";
    position: absolute;
    top: -10px;
    left: 10px;
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Achievement Badges */
.achievement-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #856404;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.achievement-badge.earned {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

/* Help Tooltip */
.help-tooltip {
    position: absolute;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 300px;
    z-index: 10000;
}

.help-tooltip-content p {
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.4;
}

.help-tooltip-content .btn {
    font-size: 12px;
    padding: 4px 8px;
} 