/* SubLoom Plugin – Global Styles */

.subloom-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 16px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #18181b;
    line-height: 1.6;
}

/* Breadcrumb */
.sl-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: #71717a;
    margin-bottom: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f4f4f5;
}
.sl-breadcrumb a { color: #2563eb; text-decoration: none; }
.sl-breadcrumb a:hover { text-decoration: underline; }
.sl-breadcrumb .sep { color: #d4d4d8; }
.sl-breadcrumb .current { color: #18181b; font-weight: 500; }

/* Pagination */
.pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid #e4e4e7;
    background: #fff;
    color: #52525b;
    transition: all .15s;
}
.pg-btn:hover { background: #f4f4f5; border-color: #a1a1aa; color: #18181b; }
.pg-active { background: #6366f1 !important; color: #fff !important; border-color: #6366f1 !important; }
.pg-disabled { opacity: .38; cursor: not-allowed; pointer-events: none; }

/* Flag images in subtitle table – override theme CSS */
.subloom-wrapper table img.sl-flag,
.subloom-wrapper td img {
    display: inline !important;
    width: 32px !important;
    height: 22px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    object-fit: cover !important;
    vertical-align: middle !important;
    float: none !important;
    margin: 0 !important;
    border-radius: 3px;
    border: 1px solid #e4e4e7;
}


