/* =========================================================
   INCOIS CUSTOM INDEX PAGE STYLES
   ========================================================= */

.list-wrapper {
    padding: 10px;
    overflow: hidden;
}

.view-more-btn {
    display: inline-block;
    float: right;
    margin: 10px 10px 15px 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #006699;
    background: #ffffff;
    border: 1px solid #0088bb;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s ease;
}

.view-more-btn:hover {
    background: #006699;
    color: #ffffff;
}

/* =========================================================
   INCOIS NATIVE 1-POST-AT-A-TIME WIDGET (225px HEIGHT)
   ========================================================= */
.inc-custom-stream-box {
    height: 225px;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.08);
    margin-top: 6px;
    padding: 8px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.inc-feed-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}
.inc-feed-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
}
.inc-feed-badge i {
    color: #1877f2;
    margin-right: 5px;
    font-size: 13px;
}
.inc-feed-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}
.inc-feed-controls button {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    color: #334155;
    padding: 2px 7px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.inc-feed-controls button:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}
.inc-feed-counter {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    min-width: 32px;
    text-align: center;
}

.inc-post-card {
    flex-grow: 1;
    overflow-y: auto;
    padding: 6px 4px 4px 0;
}
.inc-post-card::-webkit-scrollbar {
    width: 4px;
}
.inc-post-card::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.inc-post-card::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 2px;
}
.inc-post-date {
    font-size: 9.5px;
    font-weight: 600;
    color: #1e40af;
    background: #eff6ff;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}
.inc-post-text {
    font-size: 12.5px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.48;
    word-wrap: break-word;
}

.inc-feed-footer {
    padding-top: 6px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}
.inc-feed-footer a {
    font-size: 11.5px;
    font-weight: 600;
    color: #1877f2;
    text-decoration: none;
    transition: 0.15s ease;
}
.inc-feed-footer a:hover {
    text-decoration: underline;
    color: #0055c4;
}

/* -- Slider Arrows Fixed CSS -- */
.slider-arrow {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white; 
    width: 36px; 
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: background 0.2s ease;
}
.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

/* Slide Link Wrapper */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Hide Slider Dots Container completely */
.slider-dots {
    display: none !important;
}
