/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

.alert-warning {
    background-color: #FFF;
    border-color: #FFF;
    color: #000;
}

.columnBlockLayout {
    margin-top: 10px !important;
    margin-bottom: 0px !important;  
}

.custom {
    margin-left: 40px !important;
    margin-right: 40px !important;    
}

.list-group-item+.list-group-item {
    border-top-width: 1px !important;
}
.container-xl 
{
    max-width: 1400px !important;
    margin: 10px auto !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
}

.btn-for-delete {
    height: 28px!important;
    padding: 4px 8px 4px 8px !important;
    font-size: 14px !important;
    border: none!important;
}

.button2, .btn-default, .btn-for-file-input {
    padding: 10px 24px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    background: white !important;
    color: #333 !important;
    border: 1px solid #d1d5db !important;
    transition: all 0.2s !important;
}

.button2:hover, .btn-default:hover, .btn-for-file-input:hover, .btn-info {
    background-color: #102D66 !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(16, 45, 102, 0.2) !important;
    transform: translateY(-1px) !important;
}

.button2:active, .btn-default:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.button2:focus, .btn-default:focus {
    background: #f3f4f6;
}

.button2:disabled, .btn-default:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: #f5f5f5 !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
}

.button-primary, .btn-primary {
    padding: 10px 24px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    background: #4a6fa5 !important;
    color: white !important;
    border: none !important;
    transition: all 0.2s !important;
}

.button-primary:hover, .btn-primary:hover {
    background-color: #4a6fa5 !important;
    border-color: #4a6fa5 !important;
    box-shadow: 0 4px 12px rgba(16, 45, 102, 0.3) !important;
    transform: translateY(-1px) !important;
}

.button-primary:active, .btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.button-primary:focus, .btn-primary:focus {
    outline: 2px solid #4a6fa5 !important;
    outline-offset: 2px !important;
}

.button-primary:disabled, .btn-primary:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: #6b7280 !important;
    border-color: #6b7280 !important;
}

.button2:active, .button2.active, .btn-secondary:active, .btn-secondary.active, .btn-default:active, .btn-default.active {
    color: #2A2C2E !important;
    background-color: #4a6fa5 !important;
    border-color: #4a6fa5 !important; }
  .button2:focus, .button2.focus, .button2:focus-visible, .btn-secondary:focus, .btn-secondary.focus, .btn-secondary:focus-visible, .btn-default:focus, .btn-default.focus, .btn-default:focus-visible {
    color: #2A2C2E;
    background-color: #4a6fa5;
    border-color: #4a6fa5; }

.section-header, .crmEntityFormView .section-title, .crmEntityFormView .tab-title, legend.section-title h3 {
            background-color: #5d7399;
            color: white;
            padding: 8px 8px;
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-header::before {
            content: '';
            width: 4px;
            height: 20px;
            background-color: #0d7377;
            border-radius: 2px;
        }

        .section-content {
            padding: 24px 32px;
        }

        .field-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .field-grid-full {
            display: flex;
            flex-direction: column;
            gap: 0;
        }


        .field-item:last-child {
            border-bottom: none;
        }
/* Fix text wrapping for long content */
/* Field item container */
.field-item {
    display: grid !important;
    grid-template-columns: 250px 1fr; /* Label fixed width, value takes remaining space */
    gap: 16px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: start !important;
}


/* Field labels - keep original styling */
.field-label {
    color: #444 !important; /* Lighter color for labels */
    font-weight: 600 !important;
    word-wrap: break-word !important;
}

/* Field values */
.field-value {
    color: #333 !important;
    font-size: 14px !important;
    padding: 6px 12px !important;
    background-color: #f8f9fa !important;
    border-radius: 4px !important;
    min-height: 32px !important;
    display: inline-block !important; /* Changed from flex */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
}

/* For very long text content */
.field-value-long-text {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
    max-width: 100%;
}

        .field-value.readonly {
            background-color: #e9ecef;
            font-weight: 500;
        }

        .field-value-text {
            background-color: #f8f9fa;
            padding: 12px;
            border-radius: 4px;
            border: 1px solid #e9ecef;
            white-space: pre-wrap;
            min-height: 80px;
            line-height: 1.6;
        }

        .field-item-full {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .field-item-full .field-label {
            min-width: auto;
            font-weight: 500;
            color: #555;
        }

        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e5e7eb, transparent);
            margin: 0;
        }

        /* Timeline Styles */
        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #e5e7eb;
        }

        .timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 12px;
        }

        .timeline-marker {
            position: absolute;
            left: 12px;
            width: 16px;
            height: 16px;
            background-color: #0d7377;
            border: 3px solid white;
            border-radius: 50%;
            box-shadow: 0 0 0 2px #e5e7eb;
        }

        .timeline-content {
            background-color: #f8f9fa;
            padding: 6px 16px;
            border-radius: 6px;
            border-left: 3px solid #0d7377;
        }

        .timeline-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .timeline-title {
            font-weight: 600;
            color: #2e456b;
            font-size: 14px;
        }

        .timeline-date {
            font-size: 12px;
            color: #666;
        }

        .timeline-description {
            color: #555;
            font-size: 14px;
        }

        .table-info label[for="notescontrol"] {
            display: none !important;
        }

        .crmEntityFormView .cell div.control {
             padding-bottom: 15px !important;
             padding-left:5px !important;
          }
/* Date picker header styling */
.datepicker thead {
    background-color: #0078D4 !important;
    color: white;
}

.datepicker thead th {
    color: white;
}

.datepicker thead button {
    color: white;
}
/* Ensure hover states also maintain white color */
.datepicker thead th:hover,
.datepicker thead button:hover {
    color: white;
    background-color: #005a9e; /* Slightly darker blue on hover */
}

/* Day names row */
.datepicker thead tr:last-child th.dow {
    background-color: #0078D4;
    color: white;
}
        .attachment-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #0d7377;
            text-decoration: none;
            font-size: 14px;
            margin-top: 8px;
            padding: 4px 12px;
            background-color: white;
            border-radius: 4px;
            border: 1px solid #0d7377;
            transition: all 0.2s;
        }

        .attachment-link:hover {
            background-color: #0d7377;
            color: white;
        }

        /* Comments Section */
        .comments-section {
            background-color: #f8f9fa;
            padding: 16px;
            border-radius: 6px;
            border-left: 4px solid #5d7399;
        }

        .comment-item {
            background-color: white;
            padding: 16px;
            border-radius: 6px;
            margin-bottom: 12px;
            border: 1px solid #e9ecef;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e9ecef;
        }

        .comment-author {
            font-weight: 600;
            color: #2e456b;
            font-size: 14px;
        }

        .comment-date {
            font-size: 12px;
            color: #666;
        }

        .comment-text {
            color: #333;
            font-size: 14px;
            line-height: 1.6;
        }

        .status-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-approved {
            background-color: #d1fae5;
            color: #065f46;
        }

        .status-pending {
            background-color: #dbeafe;
            color: #1e40af;
        }

        .status-rejected {
            background-color: #fee2e2;
            color: #991b1b;
        }

        .checkbox-display {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background-color: white;
            border-radius: 4px;
            border: 1px solid #e9ecef;
        }

        .checkbox-display::before {
            content: '✓';
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid #0d7377;
            border-radius: 3px;
            text-align: center;
            line-height: 14px;
            color: #0d7377;
            font-weight: bold;
        }

        .checkbox-display.unchecked::before {
            content: '';
            background-color: #f8f9fa;
        }
        /* Special layout for long text fields - stack vertically */
.field-item.long-text,
.field-item-long-text {
    display: block !important;
}

.field-item.long-text .field-label,
.field-item-long-text .field-label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #666 !important;
    font-weight: 500 !important;
}

.field-item.long-text .field-value,
.field-item-long-text .field-value {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    color: #333 !important;
    font-size: 14px !important;
    padding: 12px !important;
    background-color: #f8f9fa !important;
    border-radius: 4px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.5 !important;
}

/* Checkbox styling for Yes/No answers */
.field-value-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 8px !important;
    padding: 8px 12px !important;
    background-color: #f8f9fa !important;
    border-radius: 4px !important;
    width: fit-content !important;
}

.field-value-checkbox input[type="checkbox"] {
    margin: 0 !important;
    cursor: pointer !important;
}

.field-value-checkbox label {
    margin: 0 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: #333 !important;
}

.crmEntityFormView .cell.crmquickform-cell:first-child {
    border-right: 0px !IMPORTANT;
}

.crmEntityFormView, .entitylist, .modal-content, .popover-content {
    background-color: #fafafa !important;
 }
 .crmEntityFormView label {
    background-color: #fafafa !important;
 }


.crmEntityFormView .cell {
    padding: 10px 10px 15px 14px !IMPORTANT;
    margin-bottom: 10px !IMPORTANT;
}


span>label {margin-right: 30px !important; }

.crmEntityFormView .tab {
    margin-bottom: 2px !IMPORTANT;
    margin-top: 15px !IMPORTANT;
}

.crmEntityFormView .actions {
    margin: 0px 10px 10px 10px ! IMPORTANT;
}

.crmEntityFormView .form-action-container-left {
    margin: 0px 10px 0px 10px ! IMPORTANT;
}


.entity-grid .view-grid {
    overflow-y: auto;
    /* max-height: 500px; */
}


h1.siteTitle, .navbar-static-top.navbar-inverse .navbar-brand a h1.siteTitle, .navbar-static-top.navbar-inverse .navbar-brand a h1.siteTitle > span
{
     color: #FFFFFF !important;
}

/* Style for active tab */
.nav-tabs .nav-link.active {
    background-color: #5d7399 !important; /* Blue background */
    color: #ffffff !important; /* White text */
    font-weight: bold !important;
    border-bottom: 3px solid #5d7399 !important;
}

/* Style for inactive tabs */
.nav-tabs .nav-link {
    color: #333333;
    font-weight: normal;
}

/* Hover effect for inactive tabs */
.nav-tabs .nav-link:hover:not(.active) {
    background-color: #f0f0f0;
    color: #5d7399;
}

.grid-actions {
padding-bottom: 0px !important;
}

body{
background-color: #fafafa !important;
}

.wrapper-body {
width: 99% !Important;
}

.custom-action
{
    text-align: right !important;
}
thead {
    height:40px;
   background-color:#2e456b !important; 
}

.entitylist-filter-option-group .h4 {
    font-size: 14px !important;
    color: var(--portalThemeColor1) !important;
}

input.form-control:disabled,
input.form-control[disabled],
input.form-control[readonly],
input.form-control[aria-disabled="true"]
input[readonly], textarea[readonly], select[readonly]  {
    background-color: #e9ecef !important;
    padding-left: 5px !important;
    cursor: not-allowed;
}

select.form-control:disabled {
    background-color: #e9ecef !important;
    opacity: 1
}
.card-body {
    padding: 5px 50px 5px 50px !important;
}

#Subgrid_approvalhistory thead {
    background-color: #fafafa;
    color: black;
}
.list-group-item.active {
    background-color: steelblue !important;
    border-color: steelblue !important;
}
.entitylist-filter-option-text {
    width: 300px !important;
}
.form-control {
    border: 1px solid #c6c5c5 !important;
}

.form-control:focus {
  border-color: black !important;

}

.has-tooltip:focus {
    border-color: #69c !important;
}

.entitylist {
    margin: 0;
    padding: 0;
    background: white;
    /* border-radius: 8px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.entity-grid.entitylist {
    padding: 0;
}

.create-action {
    background-color: #4682B4 !important;
    border-color: #4682B4 !important
}
.table thead th a {
    color: white !important;
}
/* Table Styling */
.table.table-striped {
    margin-bottom: 50px;
    border-collapse: separate;
    border-spacing: 0;
}

/* Table Header */
.table thead {
    background: linear-gradient(135deg, #5d7399 0%, #6b82a8 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.table thead th {
    border: none !important;
    padding: 10px 12px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    vertical-align: middle !important;
}

.dashboard-header a {
    color: white !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.dashboard-header a:hover {
    opacity: 0.85;
}

.dashboard-header .fa {
    font-size: 12px;
    margin-left: 4px;
}

/* Table Body */
.table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.table tbody tr:hover {
    background-color: #f8f9fa !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.table tbody td {
    padding: 14px 12px !important;
    vertical-align: middle !important;
    font-size: 14px;
    color: #333;
}

/* Striping - subtle */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.015);
}

/* Request ID Links */
.table tbody td a.edit-link {
    color: #0d7377 !important;
    font-weight: 600;
    text-decoration: underline !important;
    transition: color 0.2s;
}

.table tbody td a.edit-link:hover {
    color: #2e456b !important;
}

.notes-cell{
    background: #fbfafa;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.notes-empty {
    margin-bottom: 20px;
}

.notes-cell .addnote.btn.btn-default {
    background: #4a6fa5 !important;
    color: white !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(74, 111, 165, 0.3);
}

.notes-cell .addnote:hover {
    background: #3d5a87 !important;
    box-shadow: 0 4px 8px rgba(74, 111, 165, 0.4) !important;
    transform: translateY(-1px) !important;
}

.notes-cell .addnote .btn .btn-default::before {
    content: "\f093";  /* Font Awesome upload icon */
    font-family: "FontAwesome";
    margin-right: 8px;
}

.notes-cell .addnote:active {
    transform: translateY(0) !important;
    box-shadow: 0 1px 2px rgba(74, 111, 165, 0.3) !important;
}
/* Action Dropdown Button */
.dropdown.action .btn {
    border: 1px solid #d1d5db !important;
    background-color: white !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    transition: all 0.2s !important;
}

.dropdown.action .btn:hover {
    background-color: #f3f4f6 !important;
    border-color: #9ca3af !important;
}

.dropdown.action .btn .fa {
    color: #6b7280;
}

/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px;
    min-width: 160px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu .dropdown-item {
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
    color: #333 !important;
    transition: background-color 0.2s;
    text-decoration: none !important;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f3f4f6 !important;
    color: #0d7377 !important;
}

/* Empty State */
.table tbody tr td[colspan] {
    text-align: center;
    padding: 40px 20px !important;
    color: #6b7280;
    font-style: italic;
    font-size: 15px;
}

/* Screen Reader Only */
.visually-hidden, .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Subgrids */
.subgrid-table-container {
    overflow-x: auto;
    border-radius: 3px;
    border: 1px solid #e5e7eb;
    background: white;
}

.subgrid-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.subgrid-table thead {
    background-color: #f8f9fa  !important;
}

.subgrid-table thead th {
    padding: 10px 10px;
    text-align: left;
    font-weight: 600;
    color: black;
    font-size: 14px;
    border-bottom: 2px solid lightgray;
}

#nihorg-table thead th:first-child,
#externalorg-table thead th:first-child,
#selectagents-table thead th:first-child {
    width: 50%;
}

#nihorg-table thead th:nth-child(2),
#externalorg-table thead th:nth-child(2),
#selectagents-table thead th:nth-child(2),
#selectagents-table thead th:nth-child(3) {
    width: 50%;
    text-align: left;
}

.subgrid-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.subgrid-table tbody tr:hover {
    background-color: #f8f9fa;
}

.subgrid-table tbody tr:last-child {
    border-bottom: none;
}

.subgrid-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
}

.subgrid-table .agent-name {
    font-weight: 500;
    color: #333;
}

.subgrid-table .checkbox-cell {
    text-align: center;
}

.table-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.table-checkbox.checked {
    background-color: #d1fae5;
    color: #065f46;
}

.table-checkbox.unchecked {
    background-color: #f3f4f6;
    color: #6b7280;
}

.select-agents-table .empty-row {
    text-align: center;
    padding: 32px 16px;
    color: #6b7280;
    font-style: italic;
}

.compliance-section {
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 6px;
    border-left: 4px solid #5d7399;
}

.compliance-section .field-item {
    border-bottom: none;
    padding: 0;
}

.compliance-section .field-value {
    background-color: transparent;
    padding: 8px 0;
}

/* For very long text content */
.field-value-long-text {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
    max-width: 100%;
}

.msos-caret-button {
    padding-right: 10px !important;
    font-weight: 700;
}

.hidden-field {
    display: none !important;
}

.skip-to-content {
    position: absolute;
    left: -9999px;
}
.skip-to-content:focus,
.skip-to-content:focus-within {
    left: 0;
    top: 0;
    z-index: 9999;
    background: #000;
    color: #fff;
    padding: 10px;
}

#Subgrid_approvalhistory thead tr {
    background-color: #e0e0e0 !important;
}

#Subgrid_approvalhistory thead th a {
    color: #333333 !important;
}

.crmEntityFormView div.description.below
{
    color: #666 !important;
}
 
/* Timeline */

.entity-notes {
  max-width: 900px;
}

.entity-notes .page-header h3 {
  margin: 15px 0 0 0 !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #333 !important;
}

.note {
  background: white;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #2e456b;
  padding-right: 25px;
  margin-bottom: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

.note .row {
  display: flex !important;
  gap: 20px !important;
  align-items: flex-start !important;
}

.note .metadata {
  flex: 0 0 180px !important;
  font-size: 13px !important;
}

.note .postedon {
  margin-bottom: 4px !important;
  color: #888 !important;
}

.note .createdby {
  color: #666 !important;
  font-weight: 500 !important;
}

.note .content {
  flex: 1 !important;
}

.note .text {
  margin-bottom: 8px;
  color: #333 !important;
}

.note .attachment {
  background: transparent !important;
  border: none !important;
  padding: 8px 0 !important;
  margin: 0 !important;
}

.note .attachment .link {
  float: none !important;
}

.note .attachment a {
  color: #2e456b;
  text-decoration: none;
}

.note .attachment a:hover {
  text-decoration: underline;
}

.note .attachment .fa {
  color: #666;
}

.note .toolbar {
  margin-left: 12px;
}

.note .toolbar .btn {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
  padding: 4px 8px;
}

.note .toolbar .btn:hover {
  background: #f5f5f5;
}

.note-actions {
  margin-top: 20px;
}

.note-actions .addnote {
  background: #2e456b;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: 500;
}

.note-actions .addnote:hover {
  background: #357abd;
}

.entity-notes .note:first-child {
  border: 1px solid #e0e0e0 !important;
  border-left: 4px solid #2e456b !important;
  padding: 16px !important;
}

@media (max-width: 768px) {
    .select-agents-table {
        font-size: 12px;
    }
    
    .select-agents-table thead th,
    .select-agents-table tbody td {
        padding: 10px 8px;
    }
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
    .table thead th {
        font-size: 12px !important;
        padding: 12px 8px !important;
    }
    
    .table tbody td {
        padding: 12px 8px !important;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .table {
        font-size: 12px;
    }
    
    .table thead th,
    .table tbody td {
        padding: 10px 6px !important;
    }
     .note {
                padding: 8px 10px;
            }
    .note .toolbar {
                top: 8px;
                right: 8px;
            }
}

@media (min-width: 768px){
.container-general {
    width: 90%;
}
}

@media (min-width: 768px){
.container-content-general {
    width: 100%;
}
}

