/* HELP CENTER CSS  */

.body-no-scroll {
    overflow-y: hidden;
}
.body-no-scroll .navbar-fixed-top {
    overflow-y: scroll;
}
/* Open Button */
.help-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1e88e5;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1000;
}

/* Overlay */
.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* Panel */
.help-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    /* background: #f3f7fb; */
    background-color: var(--gemba-global-color-secondary);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    z-index: 1031;
    padding: 20px;
    overflow-y: auto;
}

/* Active state */
.help-panel.active {
    right: 0;
}

.help-overlay.active {
    /* opacity: 1; */
    visibility: visible;
}

/* Header */
.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-header h2 {
    margin: 0;
    color: #003659;
        font-family: "Expose-Bold";
}

.help-header .close-btn {
    font-size: 22px;
    cursor: pointer;
}

/* Search */
.help-search {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border-radius: 20px;
    border: 1px solid #ccc;
}

/* Section */
.help-section h5 {
    color: #1e88e5;
    font-family: "Expose-Bold";
}

.help-card {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    background: #ffffff;
    border: 2px solid #2e5d84;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.help-card:hover {
    background: var(--gemba-global-color-accent);
    transform: translateY(-2px);
    color: #ffffff;
}
.help-card:hover .card-content svg path {
    fill: #ffffff;
}

.help-card:hover .card-content {
    color: #ffffff;
}

.card-img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    overflow: hidden;
    object-fit: cover;
    border: 2px solid #2e5d84;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-top: -2px;
}

.card-content {
    color: #1c3d5a;
}
.card-content h4 {
    margin: 0;
    font-size: 16px;
    /* color: #1c3d5a; */
    font-weight: 600;
}

.card-content p {
    margin: 5px 0 0;
    font-size: 13px;
    /* color: #1c3d5a; */
}

.icon {
    margin-right: 5px;
}

.closeHelpCenter {
    color: var(--gemba-global-color-8b50551) !important;
}

.explore-section {
    padding: 20px 0;
}

.explore-title {
    color: #1e88e5;
    font-weight: 600;
    /* margin-bottom: 15px; */
}

.explore-grid {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    background: #ffffff;
    border: 2px solid #2e5d84;
    border-radius: 16px;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    color: #1c3d5a;
}

.explore-card:hover {
    background: var(--gemba-global-color-accent);
    transform: translateY(-4px);
    color: #ffffff;
}

.explore-card:hover svg path {
    fill: #ffffff !important;
}

.explore-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.explore-card h4 {
    margin: 5px 0;
    font-size: 15px;
    font-weight: 600;
    /* color: #1c3d5a; */
}

.explore-card p {
    font-size: 13px;
    /* color: #1c3d5a; */
    margin: 5px 0 0;
}

.more-resources {
    margin-top: 20px;
}

.more-title {
    color: #1e88e5;
    font-weight: 600;
    /* margin-bottom: 15px; */
}

/* Resource Row */
.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    color: #1c3d5a;
}

.resource-item:hover {
    background: var(--gemba-global-color-accent);
    color: #ffffff;
}

.resource-item:hover svg path {
    fill: #ffffff !important;
}

/* Icon */
.resource-icon {
    font-size: 22px;
    color: #1e88e5;
    margin-top: 3px;
}

/* Text */
.resource-content h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    /* color: #1c3d5a; */
}

.resource-content p {
    margin: 3px 0 0;
    font-size: 13px;
    /* color: #5b6f82; */
}

#helpSearchContent {
    background: #ffffff;
    padding: 5px 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.search-results {
    border-radius: 8px;
    overflow-y: auto;
}

.search-item {
    display: flex;
    /* align-items: center; */
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e6e6e6;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-icon {
    margin-right: 10px;
    font-size: 16px;
    color: #999;
    margin-top: -2px;
}

.search-content {
    font-size: 15px;
}

.no-results {
    padding: 20px;
    color: #888;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.help-search {
    width: 100%;
    padding: 10px 40px 10px 15px; /* right padding for icon */
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; /* hidden by default */
}

.search-results-issue {
    border-radius: 8px;
    overflow-y: auto;
}
/* HELP CENTER CSS  */

         .loading-skeleton .skeleton-title,
        .loading-skeleton .skeleton-line,
        .loading-skeleton .skeleton-circle {
            background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 4px;
        }

.custom-intro-tooltip{
    min-width: 440px !important;
}

.skeleton-title {
    /* height: 18px; */
    width: 92%;
    color: transparent !important;
    text-shadow: none;
    /* margin-bottom: 16px; */
}

.skeleton-line {
    /* height: 13px; */
    /* margin: 10px 0; */
    width: 67%;
    color: transparent !important;
    text-shadow: none;
}
.skeleton-line *{
    color: transparent !important;
}