/* help-modal.css - Styles for the help modal */

 
/* Help Button in Sidebar */
.help-btn {
    background: var(--beige-light) !important;
    color: var(--green-teal) !important;
    margin-bottom: 5px !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    font-size: 12px !important;
    width: 100%;
}
.help-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}
 

/* Overlay */
.help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.9); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* Modal Container */
.help-modal-content {
    background: #34495e;
    color: #fff;
    width: 90%; max-width: 1000px;
    height: 85%; max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #fff;
}

/* Header */
.help-modal-header {
    background: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.help-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Body */
.help-modal-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Sidebar */
.help-nav {
    width: 180px;
    background: #f8f9fa;
    border-right: 1px solid #333;
    overflow-y: auto;
    flex-shrink: 0;
}

.help-nav-btn {
    background: #f8f9fa;
    color: #34495e;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #333;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.help-nav-btn:hover {
    background: #34495e;
    color: #f8f9fa;
}

.help-nav-btn.active {
    background: #fff;
    color: #34495e;
}

/* Content Area */
.help-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    font-family: sans-serif;
    color: #ddd;
    background: #34495e;
}
.quick-start {
    margin-bottom: 30px;
    line-height: 25px;
}
/* Section */
.help-section {
    display: none;
}

.help-section.active {
    display: block;
}

.help-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
}

.help-section h4 {
    font-size: 16px;
    margin-top: 20px;
    color: #fff;
}

.help-section p,
.help-section li {
    font-size: 14px;
    margin: 8px 0;
    color: #fff;
}
strong {
    font-size: 12px;
    font-weight: 600;
}

.stage-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
}

span.stage-number {
    font-size: 14px;
}
.help-section ul {
    margin-left: 20px;
    list-style: disc;
}

/* Start Step */
.start-step {
    /* background: #111; */
    border-left: 4px solid #fff;
    /* padding: 10px; */
    margin-bottom: 10px 0;
    font-size: 14px;
    color: #ffffff;
}

/* Tool Guide / Tips */
.tool-guide,
.tip-group {
    /* background: #111; */
    /* padding: 16px; */
    border: 1px solid #444;
    /* margin: 20px 0; */
    /* border-radius: 4px; */
    color: #ddd;
}

.tool-guide h4,
.tip-group h4 {
    margin-bottom: 10px;
    color: #fff;
}

/* Workflow */
.workflow-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #111;
    padding: 12px;
    border-left: 4px solid #fff;
    border-radius: 4px;
    margin: 20px 0;
    color: #ddd;
}

.workflow-number {
    background: #fff;
    color: #34495e;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 10px;

}

/* Responsive */
@media (max-width: 768px) {
    .help-modal-content {
        flex-direction: column;
        height: 95%;
    }

    .help-nav {
        width: 100%;
        display: flex;
        overflow-x: auto;
    }

    .help-nav-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .help-content {
        padding: 16px;
    }
}
