/* Agent Teammate Help Center - Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f3f3f3;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.help-header {
    /* background: linear-gradient(135deg, #BFA75D 0%, #A08F4A 100%); */
    background: #615941;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.help-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.help-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.navigation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #BFA75D;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #BFA75D;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #BFA75D;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.back-button:hover {
    background: #A08F4A;
    color: white;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.section h3 {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 15px;
    margin-top: 25px;
}

.section h4 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    margin-top: 20px;
}

.section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.section ul, .section ol {
    margin-bottom: 20px;
    margin-left: 25px;
}

.section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.screenshot {
    text-align: center;
    margin: 30px 0;
}

.screenshot img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.screenshot img:hover {
    transform: scale(1.02);
}

.screenshot-caption {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
}

.feature-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.feature-box.tip {
    border-left: 4px solid #BFA75D;
    /* background: #f8fff9; */
}

.feature-box.warning {
    border-left: 4px solid #BFA75D;
    /* background: #fffdf5; */
}

.feature-box.info {
    border-left: 4px solid #BFA75D;
    /* background: #f7fcfe; */
}

.feature-box h4 {
    margin-top: 0;
    color: inherit;
}

.button-demo {
    display: inline-block;
    background: #BFA75D;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin: 5px;
    font-size: 0.9rem;
}

.button-demo.secondary {
    background: #6c757d;
}

.button-demo.success {
    background: #28a745;
}

.button-demo.danger {
    background: #dc3545;
}

.steps {
    counter-reset: step-counter;
}

.step {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
}

.step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #BFA75D;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.keyboard-shortcut {
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 0.9rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.code {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.help-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.help-table th,
.help-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.help-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.help-table tr:nth-child(even) {
    background: #f9f9f9;
}

.help-footer {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.help-footer h3 {
    color: #333;
    margin-bottom: 15px;
}

.help-footer p {
    color: #666;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #BFA75D;
    font-weight: 500;
}

/* Alert styles for special notifications */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert.info {
    background: #f8f9fa;
    border: 1px solid #BFA75D;
    color: #222222;
    /* background: #e7f3ff;
    border: 1px solid #b8daff;
    color: #0c5460; */
}

.alert.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert.danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 768px) {
    .help-container {
        margin: 10px;
        padding: 15px;
    }
    
    .help-header {
        padding: 20px;
    }
    
    .help-header h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .step {
        padding-left: 40px;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .navigation,
    .back-button {
        display: none;
    }
    
    .help-container {
        box-shadow: none;
        margin: 0;
    }
    
    .screenshot img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}
