.integration-content-style {
    background-color: #f8f9fb; /* light gray background */
    padding: 50px 50px 0px 50px;
    /*border-bottom: 1px solid #e2e6ea;*/
}
.your-action-content-style {
     padding: 0px 50px;
}
.notes-table-content-style {
     padding: 20px 50px;
}
/*.wpb_text_column .wpb_wrapper {*/
/*    max-width: 900px;*/
/*}*/

/* Heading */
.wpb_text_column h2 {
    font-size: 26px;
    font-weight: bold;
    color: #143460;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Paragraphs */
.wpb_text_column p {
    font-size: 15px;
    color: #6c7a89; /* muted gray */
    margin: 0;
    line-height: 1.6;
}

/* Spacing between paragraphs */
.wpb_text_column p + p {
    margin-top: 5px;
}




/* Progress start Wrapper */
.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f6f8;
    padding: 25px 20px;
    /*border-bottom: 1px solid #e1e5ea;*/
    gap: 10px;
    flex-wrap: wrap;
}

/* Each Step */
.process-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5b6a;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Icon Circle */
.process-step .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #466a91;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Text */
.process-step span {
    color: #143460;
    font-weight: 600;
}

/* Connector (dotted line with arrow feel) */
.connector {
    flex: 0 0 60px;
    height: 2px;
    border-top: 2px dotted #bfc7d1;
    position: relative;
}

/* Arrow effect */
.connector::after {
    content: "›";
    position: absolute;
    right: -6px;
    top: -15px;
    font-size: 30px;
    color: #bfc7d1;
}

/* Remove arrow on last connector */
.process-wrapper .connector:last-of-type::after {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .connector {
        width: 2px;
        height: 30px;
        border-top: none;
        border-left: 2px dotted #bfc7d1;
    }

    .connector::after {
        content: "›";
        position: absolute;
        right: -7px;
        top: 83%;
        transform: rotate(90deg);
        font-size: 30px;
        color: #bfc7d1;
    }
}



/* Actio required CSS start */
/* Alert Container */
.top-alert {
    display: flex;
    justify-content: space-between;
    background-color: #fdf7f2;
    border: 1px solid #e2d9cf;
    border-radius: 6px;
    padding: 18px 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Left Section */
.top-alert .left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Icon */
.top-alert .icon {
    width: 32px;
    height: 32px;
    background-color: #f26522; /* orange */
    border-radius: 4px;
    position: relative;
}

/* Icon inner (document style) */
.top-alert .icon::before {
    content: "\f15c"; /* Font Awesome file icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Title */
.action_required_title {
    font-size: 16px;
    font-weight: bold;
    color: #143460;
    margin-bottom: 4px;
}

/* Description */
.top-alert .desc {
    font-size: 14px;
    color: #5f6f7f;
    line-height: 1.5;
}

/* Button */
.btn-orange {
    background-color: #f26522;
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

/* Button Hover */
.btn-orange:hover , .integration-custom-btn:hover {
    background-color: #d9541a;
    color: #FFFFFF;
    /* border: none; */
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .top-alert {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-orange {
        align-self: flex-start;
    }
}




/* Importnent notes CSS start */

/* =========================
   MAIN LAYOUT
========================= */
.main-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0px;
}

/* When info card is closed */
.main-grid.full-width {
    grid-template-columns: 1fr;
}

/* =========================
   LEFT INFO CARD
========================= */
.info-card {
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 6px;
    padding: 0;
    height: fit-content;
}

.info-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.info-title .important-notes-close {
    position: absolute;
    right: 0;
    cursor: pointer;
}

.info-card ul {
    padding-left: 16px;
    margin: 0;
}

.info-card li {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

/* =========================
   BUTTONS (TOP RIGHT)
========================= */
.right-panel .btn {
    font-size: 13px;
    padding: 8px;
    border-radius: 4px;
    margin-right: 8px;
}
.right-panel .btn-link:hover {
    color: #f47421;
    text-decoration: none;
    background: #f2f2f2;
}

.btn-secondary {
    background: #eef2f7;
    border: none;
    color: #2f3a4c;
}

/* =========================
   TABLE
========================= */
.table {
    width: 100%;
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

.table thead {
    background: #f7f9fc;
}

.table th {
    font-size: 12px;
    font-weight: 600;
    color: #143460;
    padding: 10px;
    text-align: left;
}

.table td {
    font-size: 13px;
    padding: 10px;
}

.table tbody tr {
    border-top: 1px solid #f0f2f7;
}

.table tbody tr:hover {
    background: #f9fbff;
}

/* =========================
   STATUS BADGES
========================= */
.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.badge-approved {
    background: #e6f4ea;
    color: #2e7d32;
}

.badge-pending {
    background: #e8f0fe;
    color: #2d6cdf;
}

.badge-testing {
    background: #fff4e5;
    color: #b26a00;
}

.badge-info {
    background: #fdecea;
    color: #c62828;
}

/* =========================
   ACTION ICONS
========================= */
.table i {
    font-size: 14px;
    margin: 0 5px;
    cursor: pointer;
    color: #ff6a00;
}

/* =========================
   PAGINATION
========================= */
.pagination {
    margin-top: 10px;
}

.pagination .page-link {
    border: none;
    background: #eef2f7;
    color: #f47421;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 12px;
}

.pagination .active .page-link {
    background: #f47421;
    color: #fff;
}

/* =========================
   MODAL
========================= */
.status-definitions-wrapper .modal-content {
    border-radius: 5px;
    border: 1px solid #f47421;
}

.status-definitions-wrapper .modal-header {
    background: #f7f9fc;
    border-bottom: 1px solid #e3e7ef;
}

.status-definitions-wrapper .modal-title {
    font-size: 15px;
    font-weight: 600;
}
#integration-reject-form label{
  font-size: 15px;
}

/* =========================
   MOBILE (IMPORTANT)
========================= */
@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .process-wrapper {
        flex-direction: column;
    }

    /* .connector {
        display: none;
    } */
}




/* Required action CSS start */
/* Make container vertical */
.top-alert {
    display: flex;
    flex-direction: column;
    background-color: #f5efe9;
    border: 1px solid #e2d9cf;
    border-radius: 6px;
    padding: 18px 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Top Row */
.left-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2d9cf;
}

/* Bottom Row */
.left-bottom {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    padding-top: 10px;
}

/* Icon */
.top-alert .icon {
    width: 32px;
    height: 32px;
    background-color: #f26522;
    border-radius: 4px;
    position: relative;
}

.top-alert .icon::before {
    content: "\f15c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Title */
.action_required_title {
    font-size: 16px;
    font-weight: 600;
    color: #143460;
}

/* Description */
.top-alert .desc {
    font-size: 14px;
    color: #143460;
}


/* CSS for close icon in the important note */

/* Card */
.info-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 0;
    border: 1px solid #eef1f4;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    position: relative;
}
.info-header {
    background: #e9edf3;
    border: 1px solid #dcdfe4;
    padding: 10px 15px;
}

.info-title h4 {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #143460;
    text-transform: none;
}
/* Content */
.info-content {
    padding: 12px 15px;
}

/* List */
.info-content ul {
    margin: 0;
    padding-left: 18px;
}

.info-content li {
    font-size: 13px;
    color: #143460;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Floating Close Icon */
.important-notes-close {
    position: absolute;
    top: -15px;   /* half outside */
    right: -15px;
    width: 34px;
    height: 34px;
    background: #f26522;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
    border: 3px solid #fff; /* clean cut effect */
    transition: all 0.2s ease;
}

/* Hover effect */
.important-notes-close:hover {
    background: #d9541a;
    transform: scale(1.1);
}

/* Title */
.info-title {
    font-size: 17px;
    font-weight: 600;
    color: #143460;
    margin-bottom: 12px;
}

/* List */
.info-card ul {
    margin: 0;
    padding-left: 18px;
}

.info-card li {
    font-size: 14px;
    color: #143460;
    margin-bottom: 8px;
}

/* Bullet color */
.info-card li::marker {
    color: #143460;
}

a.integration-custom-btn {
    background-color: #ffffff;
    color: #143460;
    border: 1px solid #69699545;
    padding: 9px 18px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}
#integration-request-tab-content div#custom-filters {
    background: #FFFFFF;
    padding: 10px 0px;
    margin: 5px 30px;
    border: 1px solid #8080802b;
}




/* ===== TABLE CSS new ===== */
#integration-request-requests {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

/* HEADER */
#integration-request-requests thead th {
    background: #FFFFFF;
    font-weight: 800;
    font-size: 13px;
    padding: 5px 10px;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

/* ROW */
#integration-request-requests tbody tr {
    transition: all 0.25s ease;
}

#integration-request-requests tbody tr:hover {
    background: #f8fafc;
}

/* CELL */
#integration-request-requests td {
    padding: 14px 12px;
    font-size: 13px;
    color: #475569;
}

/* ===== EXPAND ICON (FONT AWESOME) ===== */
td.dtr-control::before {
    font-family: "Font Awesome 5 Free";
    content: "\f067"; /* plus */
    font-weight: 900;
    margin-right: 8px;
    color: #d9541a;
    transition: 0.3s;
}

tr.shown td.dtr-control::before {
    content: "\f068"; /* minus */
    color: #d9541a;
}

/* clickable feel */
.expand-control {
    cursor: pointer;
}
/* ===== ACCORDION CARD ===== */
.expanded-row .card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s ease;
}

.expanded-row .card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* HEADER */
.expanded-row .card-header {
    background: #f9fafb;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
}

/* BUTTON */
.expanded-row .card-header button {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
    border: none;
    background: none;
    position: relative;
}

/* ICON RIGHT */
.expanded-row .card-header button::after {
    font-family: "Font Awesome 5 Free";
    content: "\f078"; /* down */
    font-weight: 900;
    position: absolute;
    right: 18px;
    transition: 0.3s;
    color: #64748b;
}

.expanded-row .card-header button[aria-expanded="true"]::after {
    transform: rotate(180deg);
    color: #2563eb;
}

/* BODY */
.expanded-row .card-body {
    background: #f8fafc;
    padding: 20px;
}

/* ===== FORM GRID (FIX 2-LINE LABEL ISSUE) ===== */
.expanded-row .form-group {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.expanded-row .form-group:last-child {
    border-bottom: none;
}

/* LABEL */
.expanded-row .form-group label {
    width: 35%;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.4;
    text-align: right;
    padding-right: 15px;
}

/* VALUE */
.expanded-row .form-group .col-sm-8,
.expanded-row .form-group div {
    width: 65%;
    font-size: 13px;
    color: #1e293b;
    line-height: 1.5;
}

/* ===== ACTION ICONS ===== */
.expanded-row .expand-control .fa-check {
    color: #22c55e;
    background: rgba(34,197,94,0.12);
    padding: 7px;
    border-radius: 8px;
    transition: 0.2s;
}

.expand-control .fa-ban {
    color: #ef4444;
    background: rgba(239,68,68,0.12);
    padding: 7px;
    border-radius: 8px;
    transition: 0.2s;
}

.expand-control .fa-check:hover {
    background: #22c55e;
    color: #fff;
}

.expand-control .fa-ban:hover {
    background: #ef4444;
    color: #fff;
}

/* ===== NOTES TABLE ===== */
.notes-tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.notes-tbody td {
    padding: 10px;
}

#integration-request-tab-content div#my-requests-pane {
    background-color: #f5f5f5;
}

#integration-request-requests {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border-collapse: separate;
    border-spacing: 0;
}

/* HEADER ROW */
#integration-request-requests thead th {
    background: #ffffff;
    font-weight: 700;
    font-size: 13px;
    color: #334155; /* slightly soft dark like screenshot */
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center; /* center like screenshot */
    vertical-align: middle;
    position: relative;
}

/* Allow specific columns to wrap if needed */
#integration-request-requests thead th.wrap {
    white-space: normal;
    line-height: 1.2;
}

/* Left align specific columns */
#integration-request-requests thead th.text-left {
    text-align: left;
}

/* Action column center */
#integration-request-requests thead th:last-child {
    text-align: center;
}

/* SORT ICON ALIGNMENT FIX */
#integration-request-requests thead th.sorting:after,
#integration-request-requests thead th.sorting_asc:after,
#integration-request-requests thead th.sorting_desc:after {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

/* Tooltip icon spacing */
#integration-request-requests .tooltip-icon {
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
}

/* Optional: fix column widths for perfect layout */
#integration-request-requests th:nth-child(1) { width: 110px; }
#integration-request-requests th:nth-child(2) { width: 260px; text-align:left; }
#integration-request-requests th:nth-child(3) { width: 180px; text-align:left; }
#integration-request-requests th:nth-child(4),
#integration-request-requests th:nth-child(5),
#integration-request-requests th:nth-child(6) { width: 140px; }
#integration-request-requests th:nth-child(7) { width: 160px; }
#integration-request-requests th:nth-child(8) { width: 100px; }

/* OPTIONAL: if text becomes too long */
#integration-request-requests thead th {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* BASE BADGE */
.status-badge {
    display: inline-block;
    padding: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 6px; /* slightly rounded, not fully pill */
    line-height: 1;
    text-align: center;
    min-width: 110px; /* keeps consistent width like screenshot */
}

.status-approved {
    background-color: #4CAF50; /* green */
}

.status-pending {
    background-color: #3b6ea5; /* blue-gray */
}

.status-needs-info {
    background-color: #f59e0b; /* orange */
}

.status-rejected {
    background-color: #ef4444; /* red */
}

.status-posted {
    background-color: #2563eb; /* blue */
}


/* CONTAINER ALIGNMENT */
#integration-request-requests td .text-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* gap: 6px; */
}

/* COMMON ICON STYLE (SMALL) */
#integration-request-requests td .fa-check,
#integration-request-requests td .fa-ban {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;   /* smaller size */
    height: 20px;
    border-radius: 50%;
    font-size: 10px; /* smaller icon */
    color: #fff;
    transition: all 0.2s ease;
}

/* APPROVE */
#integration-request-requests td .fa-check {
    background-color: #f47421;
}

/* REJECT */
#integration-request-requests td .fa-ban {
    background-color: #ef4444;
}

/* HOVER */
#integration-request-requests td .fa-check:hover {
    background-color: #d65f14;
    transform: scale(1.05);
}

#integration-request-requests td .fa-ban:hover {
    background-color: #dc2626;
    transform: scale(1.05);
}

/* REMOVE EXTRA SPACING FROM  */
#integration-request-requests td a {
    margin: 0;
    text-decoration: none;
}


/* ============================= */
/* STATUS DEFINITIONS MODAL */
/* ============================= */

.status-definitions-wrapper .status-modal {
    border-radius: 14px;
    border: none;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* HEADER */
.status-definitions-wrapper .modal-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 20px;
}

.status-definitions-wrapper .modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

/* BODY */
.status-definitions-wrapper .modal-body {
    padding: 20px;
    display: block; /* FIX layout issue */
}

/* ============================= */
/* STATUS CARDS */
/* ============================= */

.status-definitions-wrapper .status-card {
    width: 100%;
    padding: 6px 16px;
    border-radius: 10px;
    color: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

/* spacing between cards */
.status-definitions-wrapper .status-card + .status-card {
    margin-top: 12px;
}

/* hover effect */
.status-definitions-wrapper .status-card:hover {
    transform: translateY(-2px);
}

/* ============================= */
/* TEXT */
/* ============================= */

.status-definitions-wrapper .status-title {
    font-weight: 700;
    font-size: 14px;
}

.status-definitions-wrapper .status-desc {
    font-size: 12px;
    margin-top: 0px;
    opacity: 0.95;
}

/* ============================= */
/* COLORS (MATCH BADGES EXACTLY) */
/* ============================= */

.status-definitions-wrapper .status-card.pending {
    background: #6b7280; /* Pending Approval */
}

.status-definitions-wrapper .status-card.progress-status {
    background: #6b7280; /* In Progress */
}

.status-definitions-wrapper .status-card.info {
    background: #f59e0b; /* Needs Info */
}

.status-definitions-wrapper .status-card.approved {
    background: #16a34a; /* Approved */
}

.status-definitions-wrapper .status-card.rejected {
    background: #ef4444; /* Rejected (optional) */
}

/* ============================= */
/* FOOTER NOTE (FIXED VISIBILITY) */
/* ============================= */

.status-definitions-wrapper .status-footer-note {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff7ed;
    border-left: 4px solid #f47421;
    font-size: 13px;
    color: #9a3412;
    font-weight: 500;
    text-align: left;
}

/* ============================= */
/* RESPONSIVE (OPTIONAL) */
/* ============================= */

@media (max-width: 576px) {
    .status-definitions-wrapper .modal-dialog {
        margin: 10px;
    }
}


/* Container */
#custom-filters {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Group */
.filter-group {
  display: flex;
  flex-direction: column;
}

/* Label */
.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: #143460;
  margin-bottom: 6px;
  white-space: nowrap;
}

/* Inputs */
.form-control {
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  padding: 6px 10px;
  transition: all 0.2s ease;
}

/* Hover / Focus */
.form-control:hover {
  border-color: #9ca3af;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

/* Date Range wrapper */
.date-filter {
  position: relative;
}

/* Date inputs inline */
.date-range-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9fafb;
  padding: 6px;
  border-radius: 8px;
  border: 1px dashed #d1d5db;
}

/* Inputs inside */
.date-range-wrapper input {
  width: 45%;
  background: #fff;
  cursor: pointer;
}

/* Arrow between dates */
.date-separator {
  font-size: 14px;
  color: #6b7280;
}

/* Smooth appearance */
#custom-date-range {
  display: none;
  animation: fadeSlide 0.25s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .date-range-wrapper {
    flex-direction: column;
  }

  .date-range-wrapper input {
    width: 100%;
  }
}



/*
* Here start the responsive CSS new
*/


/* =========================
   GLOBAL SAFE FIX
========================= */


/* =========================
   TABLE (DATATABLE SCROLL)
========================= */
/* =========================
   TABLET (≤ 992px)
========================= */

@media (max-width: 992px) {

    .main-grid {
        display: block !important;
    }

    .left-panel,
    .right-panel {
        width: 100% !important;
    }

    .left-panel {
        margin-top: 20px;
    }

    .integration-content-style,
    .your-action-content-style,
    .notes-table-content-style {
        padding: 30px 20px !important;
    }
}


/* =========================
   MOBILE (≤ 768px)
========================= */

@media (max-width: 768px) {

    /* REMOVE WIDTH ISSUES */
    * {
        max-width: 100%;
    }

    
    /* SECTION SPACING */
    .integration-content-style,
    .your-action-content-style,
    .notes-table-content-style {
        padding: 15px !important;
        margin-left: 0 !important;
    }

    /* ALERT / HEADER */
    .left-bottom {
        display: block !important;
    }

    .btn-orange {
        display: block;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    /* FILTERS */
    #custom-filters {
        margin: 10px !important;
        padding: 15px !important;
    }

    #custom-filters .row {
        display: block !important;
    }

    #custom-filters [class*="col-"] {
        width: 100% !important;
        margin-bottom: 10px;
    }

    /* DATE RANGE */
    .date-range-wrapper {
        display: block !important;
    }

    .date-range-wrapper input {
        width: 100%;
        margin-bottom: 10px;
    }

    .process-step {
        margin-bottom: 10px;
    }

    /* BUTTON GROUP */
    .d-flex.justify-content-end {
        display: block !important;
    }

    .d-flex.justify-content-end a {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    /* DATATABLE MOBILE SCROLL */
    #integration-request-requests_wrapper {
        overflow-x: auto;
    }

    .dataTables_scroll {
        overflow-x: auto;
    }

    .dataTables_scrollBody {
        overflow-x: auto !important;
    }

    #integration-request-requests {
        min-width: 900px !important;
    }

    /* CLOSE BUTTON */
    .important-notes-close {
        top: -10px;
        right: -10px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}


/* =========================
   SMALL MOBILE (≤ 480px)
========================= */

@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    .integration-content-style,
    .your-action-content-style,
    .notes-table-content-style {
        padding: 10px !important;
        margin-left: 0 !important;
    }

    .btn-orange {
        font-size: 14px;
        padding: 10px;
    }
}


/* =========================
   OPTIONAL UX IMPROVEMENT
========================= */

.dataTables_scrollBody::-webkit-scrollbar {
    height: 6px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}


/* =========================
   ROW CLICK UX
========================= */

#integration-request-requests tbody tr {
    cursor: pointer;
}