/* Layout reset-ish */
.oo-login-wrapper,
.oo-portal-wrapper {
    box-sizing: border-box;
}

.oo-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
    padding: 20px;
}

.oo-login-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 32px 32px 28px;
    max-width: 420px;
    width: 100%;
}

.oo-login-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.oo-login-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid #F37021;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #F37021;
    font-size: 18px;
}

.oo-login-logo-title {
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.oo-login-logo-sub {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.oo-login-form .oo-field {
    margin-bottom: 16px;
}

.oo-login-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
}

.oo-login-form input[type="text"],
.oo-login-form input[type="password"] {
    width: 100%;
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.oo-login-form input:focus {
    outline: none;
    border-color: #F37021;
    box-shadow: 0 0 0 1px rgba(243, 112, 33, 0.15);
}

.oo-actions {
    margin-top: 6px;
}

.oo-btn-primary {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #F37021;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.05s ease;
}

.oo-btn-primary:hover {
    background: #e86216;
}

.oo-btn-primary:active {
    transform: translateY(1px);
}

/* Portal layout */
.oo-portal-wrapper {
    min-height: 100vh;
    background: #f3f4f6;
}

.oo-portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.oo-portal-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oo-portal-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    border: 2px solid #F37021;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #F37021;
}

.oo-portal-logo-text {
    font-weight: 600;
    font-size: 16px;
}

.oo-portal-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.oo-portal-logout {
    color: #F37021;
    text-decoration: none;
    font-weight: 500;
}

.oo-portal-logout:hover {
    text-decoration: underline;
}

.oo-portal-main {
    padding: 24px;
}

.oo-page-title {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .oo-login-card {
        padding: 24px 20px 20px;
    }

    .oo-portal-main {
        padding: 16px;
    }
}

/* CEO Dashboard Layout */
.oo-page-subtitle {
    margin-top: 2px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #6b7280;
}

.oo-grid {
    display: grid;
    gap: 14px;
}

.oo-grid-tiles {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 18px;
}

.oo-tile {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.oo-tile-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b7280;
    margin-bottom: 4px;
}

.oo-tile-value {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.oo-tile-meta {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}

.oo-layout-main {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
    gap: 16px;
    margin-top: 4px;
}

.oo-layout-main-primary {
    min-width: 0;
}

.oo-layout-main-sidebar {
    min-width: 0;
}

.oo-grid-charts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
}

.oo-grid-snapshots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oo-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    padding: 12px 14px 14px;
}

.oo-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.oo-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.oo-card-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.oo-card-body {
    font-size: 13px;
    color: #374151;
}

.oo-card-sidebar {
    margin-bottom: 14px;
}

.oo-card-body-scroll {
    max-height: 260px;
    overflow-y: auto;
}

.oo-list-notifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oo-note-item {
    padding: 8px 6px;
    border-bottom: 1px solid #f3f4f6;
}

.oo-note-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.oo-note-message {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 3px;
}

.oo-note-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
}

.oo-note-type {
    padding: 1px 6px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
}

.oo-note-unread .oo-note-title {
    font-weight: 600;
}

.oo-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 13px;
    color: #4b5563;
    cursor: not-allowed;
}

.oo-btn-block {
    width: 100%;
    margin-bottom: 6px;
}

.oo-muted {
    font-size: 12px;
    color: #9ca3af;
}

/* Responsive CEO grid */
@media (max-width: 1200px) {
    .oo-grid-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .oo-layout-main {
        grid-template-columns: minmax(0, 1fr);
    }
    .oo-grid-charts {
        grid-template-columns: minmax(0, 1fr);
    }
    .oo-grid-snapshots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .oo-grid-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .oo-grid-snapshots {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .oo-grid-tiles {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Finance Module */
.oo-grid-tiles-finance {
    margin-bottom: 18px;
}

.oo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.oo-tab-button {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    color: #4b5563;
}

.oo-tab-button.oo-tab-active {
    border-color: #F37021;
    background: #FFF4EC;
    color: #F37021;
    font-weight: 500;
}

.oo-tab-panel {
    display: none;
}

.oo-table-wrapper {
    overflow-x: auto;
}

.oo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.oo-table th,
.oo-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    white-space: nowrap;
}

.oo-table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
    background: #f9fafb;
}

.oo-table-actions {
    text-align: right;
}

.oo-badge-status {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
}

.oo-badge-pending {
    background: #fffbeb;
    color: #92400e;
}

.oo-badge-approved {
    background: #ecfdf3;
    color: #166534;
}

.oo-badge-rejected {
    background: #fef2f2;
    color: #b91c1c;
}

.oo-link-action {
    font-size: 12px;
    color: #2563eb;
    cursor: pointer;
    text-decoration: underline;
}

.oo-form-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 18px;
}

.oo-form-col {
    min-width: 0;
}

.oo-form-two-column .oo-field select,
.oo-form-two-column .oo-field textarea {
    width: 100%;
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.oo-form-two-column .oo-field textarea {
    resize: vertical;
}

.oo-form-two-column .oo-field select:focus,
.oo-form-two-column .oo-field textarea:focus {
    outline: none;
    border-color: #F37021;
    box-shadow: 0 0 0 1px rgba(243, 112, 33, 0.15);
}

.oo-status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oo-status-list li {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.oo-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}

.oo-status-approved {
    background: #16a34a;
}
.oo-status-pending {
    background: #facc15;
}
.oo-status-rejected {
    background: #ef4444;
}

/* Modal */
.oo-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
}

.oo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
}

.oo-modal-dialog {
    position: relative;
    max-width: 480px;
    margin: 10vh auto 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    padding: 14px 18px 14px;
    z-index: 51;
}

.oo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.oo-modal-title {
    font-size: 16px;
    font-weight: 600;
}

.oo-modal-close {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.oo-modal-body {
    font-size: 13px;
    color: #374151;
    margin-bottom: 10px;
}

.oo-modal-row {
    margin-bottom: 4px;
}

.oo-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 800px) {
    .oo-form-two-column {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* Toast notifications */
.oo-toast-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oo-toast {
    min-width: 220px;
    max-width: 320px;
    background: #111827;
    color: #f9fafb;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    opacity: 0.96;
}

.oo-toast-success {
    background: #166534;
}

.oo-toast-error {
    background: #b91c1c;
}

/* Lock scroll when modal open */
body.oo-modal-open {
    overflow: hidden;
}

.oo-card-sidebar .oo-card-body,
.oo-card-sidebar button.oo-ceo-quick-action {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* ================================
   Cleaner / Module Layout
   ================================ */

.oo-module-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.oo-module-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
    border: 1px solid #e5e7eb;
}

.oo-module-sidebar-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 10px;
}

.oo-module-sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.oo-module-sidebar-link {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 4px;
}

.oo-module-sidebar-link:hover {
    background: #f3f4f6;
}

.oo-module-sidebar-link.is-active {
    background: #f97316;
    color: #ffffff;
}

.oo-module-main {
    min-height: 300px;
}

/* Checklist grid */
.oo-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
    margin: 16px 0 20px;
}

.oo-checklist-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: #f9fafb;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
}

/* Form grid helpers */
.oo-form-grid .oo-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.oo-form-grid .oo-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.oo-form-grid .oo-field input,
.oo-form-grid .oo-field select,
.oo-form-grid .oo-field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 7px 9px;
    font-size: 14px;
}

/* Disabled primary button state */
.oo-btn-primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==========================================================================
   ORANGE OPERATIONS HUB – PORTAL ISOLATION LAYER
   This prevents theme CSS from breaking the portal layouts.
   All portal UI must live inside #oo-portal-root.
   ========================================================================== */

#oo-portal-root,
#oo-portal-root * {
    box-sizing: border-box;
}

#oo-portal-root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 32px 40px;
}

/* Neutralise theme headings / paragraphs / links inside portal */
#oo-portal-root h1,
#oo-portal-root h2,
#oo-portal-root h3,
#oo-portal-root h4,
#oo-portal-root h5,
#oo-portal-root h6 {
    margin: 0;
    font-weight: 600;
    color: #111827;
}

#oo-portal-root p {
    margin: 0 0 8px;
    color: #4b5563;
    font-size: 14px;
}

/* Reset lists for internal nav/menu */
#oo-portal-root ul,
#oo-portal-root ol {
    margin: 0;
    padding: 0;
}

#oo-portal-root li {
    list-style: none;
}

/* General link style */
#oo-portal-root a {
    text-decoration: none;
    color: inherit;
}

/* Top portal header layout */
.oo-portal-wrapper {
    background: #f3f4f6;
}

.oo-portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 20px;
}

.oo-portal-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.oo-portal-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f97316;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.oo-portal-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.oo-portal-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.oo-portal-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: #4b5563;
    border: 1px solid transparent;
}

.oo-portal-nav-link:hover {
    background: #e5e7eb;
}

.oo-portal-nav-link.is-active {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
}

.oo-portal-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
}

.oo-portal-logout {
    color: #f97316;
    font-weight: 500;
}

/* Main area */
.oo-portal-main {
    margin-top: 12px;
}

/* Admin bar compensation */
body.admin-bar #oo-portal-root {
    margin-top: 32px;
}

/* =========================================
   DRIVER LAYOUT REFINEMENTS
   ========================================= */
.oo-dashboard-driver {
    margin-top: 10px;
}

.oo-driver-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* Left sidebar */
.oo-driver-sidebar {
    width: 230px;
    flex-shrink: 0;
}

.oo-card-sidebar {
    margin-bottom: 16px;
}

/* Sidebar links */
.oo-sidebar-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    margin-bottom: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.oo-sidebar-link:hover {
    background-color: #f5f5f5;
}

.oo-sidebar-link-active {
    background-color: #fff7ec;
    color: #d56800;
    font-weight: 500;
}

/* Main driver area */
.oo-driver-main {
    flex: 1;
    max-width: 980px;
    padding-right: 0; /* smooth right side (less empty grey space) */
}

/* Top pill tabs */
.oo-driver-tab-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.oo-driver-tab-button {
    border-radius: 999px;
    padding: 7px 14px;
    border: 1px solid #e2e2e2;
    background: #fafafa;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.3;
}

.oo-driver-tab-button.is-active {
    background: #ff8a00;
    border-color: #ff8a00;
    color: #fff;
}

/* Panels */
.oo-driver-tab-panel {
    display: none;
}

.oo-driver-tab-panel[data-driver-tab="checklist"] {
    display: block; /* default until JS takes over */
}

/* Form layout helpers */
.oo-form-grid .oo-form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.oo-form-grid .oo-field {
    flex: 1;
    min-width: 180px;
}

.oo-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.oo-form-message {
    font-size: 13px;
    color: #555;
}

/* Checklist grid */
.oo-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    margin: 12px 0;
}

.oo-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.oo-field-help {
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}

/* Basic inputs if not already defined */
.oo-input,
.oo-textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 7px 10px;
    font-size: 14px;
}

.oo-textarea {
    min-height: 80px;
    resize: vertical;
}

.oo-btn-primary {
    background: #ff8a00;
    border: 1px solid #ff8a00;
    color: #fff;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 14px;
    cursor: pointer;
}

.oo-btn-primary:hover {
    background: #e97700;
    border-color: #e97700;
}

.oo-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

.oo-card.oo-inner-card {
    width: 100%;
}

.oo-tabs .oo-tab-buttons {
    padding-left: 4px;
}

/* ==========================================================================
   MEETINGS UI – MERGED + FIXED FOR ORANGE OPERATIONS HUB
   ========================================================================== */

/* Override meet panel spacing */
.oo-meetings-wrapper {
    margin-top: 10px !important;
}

/* Main layout */
.oo-meetings-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
    margin-top: 20px;
}

/* Inner two-column layout */
.oo-two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 20px;
}

/* Tabs */
.oo-meetings-tabs {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 12px;
}

.oo-meetings-tab {
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    color: #4b5563;
}

.oo-meetings-tab.is-active {
    background: #ff8a00;
    border-color: #ff8a00;
    color: white;
    font-weight: 500;
}

/* Cards */
.oo-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 20px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.05);
}

/* Form fields */
.oo-form-row {
    margin-bottom: 12px;
}

.oo-form-row-inline-2,
.oo-form-row-inline-3 {
    display: grid;
    gap: 12px;
}

.oo-form-row-inline-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oo-form-row-inline-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oo-form input,
.oo-form select,
.oo-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.oo-form input:focus,
.oo-form select:focus,
.oo-form textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249,115,22,0.15);
}

/* Actions */
.oo-form-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Meeting table adjustments */
#oo-meetings-table-body tr td {
    vertical-align: middle;
    font-size: 13px;
}

/* Action items counters */
.oo-actions-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.oo-summary-card {
    background: #f9fafb;
    padding: 10px 14px;
    border-radius: 12px;
    min-width: 110px;
    text-align: center;
}

.oo-summary-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.oo-summary-value {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.oo-summary-danger {
    color: #dc2626 !important;
}

/* Sub-tabs */
.oo-mini-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.oo-mini-tab {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    border: 1px solid #e5e7eb;
}

.oo-mini-tab.is-active {
    background: #ff8a00;
    border-color: #ff8a00;
    color: #ffffff;
    font-weight: 500;
}

.oo-mini-tab-panel {
    display: none;
}

.oo-mini-tab-panel:first-child {
    display: block;
}

/* Action items table */
#oo-actions-my-body td,
#oo-actions-open-body td,
#oo-actions-overdue-body td {
    font-size: 13px;
}
