.wpsx-guru-syslog-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}
.wpsx-guru-syslog-table th,
.wpsx-guru-syslog-table td {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-align: left;
}
.wpsx-guru-syslog-table thead {
    background-color: #f4f4f4;
    font-weight: bold;
}
.wpsx-guru-syslog-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.wpsx-guru-syslog-table tr:hover {
    background-color: #e9e9e9;
}

.mandacate__sell-form{
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
	
	}
	
	
.product-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-bottom: 20px
}

.product-card {
    border: 1px solid #f7f7f7;
    border-radius: 8px;
    flex: 1 1 300px; /* Allow cards to wrap on smaller screens */
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card label {
    cursor: pointer;
    display: block;
    padding-bottom: 10px;
}

.product-card .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card .product-content {
    margin-top: 15px;
}

.product-card .product-name {
    font-size: 1.2em;
    margin: 0 0 5px 0;
}

.product-card .product-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #ac1115;
}

.product-selection-radio {
    margin-top: 10px;
}

.product-card .ywsbs-trial-period {
  color: #0a2342;
}






/* Basic styling for the map container */
#map-container {
    margin-top: 15px;
    border: 1px solid #ccc;
    /* other styles like border-radius, etc. can be added */
}


/* Example: Adjust selector based on your form's HTML structure */
.acf-field-group-title {
    display: none !important;
}

.nearby-suppliers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates a 4-column grid with equal-width columns */
    gap: 20px; /* Adds space between grid items */
}

.mandacate-suppliers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mandacate-suppliers-list .supplier-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.mandacate-suppliers-list .selection-box {
    position: static;
}

.mandacate-suppliers-list .supplier-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.mandacate-suppliers-list .supplier-details {
    margin-top: 0;
}

.mandacate-suppliers-list .supplier-bio {
    margin: 6px 0 0;
    color: #666;
    font-size: 0.95em;
}

.supplier-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.supplier-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 5px;
}

.supplier-details {
    margin-top: 15px;
}

.supplier-details a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.distance {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* Optional: Make the grid responsive */
@media (max-width: 768px) {
    .nearby-suppliers-grid {
        grid-template-columns: repeat(2, 1fr); /* Change to a two-column grid on smaller screens */
    }
}

@media (max-width: 480px) {
    .nearby-suppliers-grid {
        grid-template-columns: 1fr; /* Switch to a single-column layout on mobile */
    }
}


/* Update the supplier card to be the positioning context */
.nearby-suppliers-grid .supplier-card {
    position: relative; /* Crucial for absolute positioning of the checkbox */
    padding-top: 15px; /* Adjust padding to avoid content shifting */
}

/* Style and position the checkbox container */
.nearby-suppliers-grid .selection-box {
    position: absolute; /* Take the element out of the normal flow */
    top: 5px;          /* Position from the top edge of the card */
    left: 5px;         /* Position from the left edge of the card */
    z-index: 10;       /* Ensure the checkbox is on top of the image */
}

/* Style the checkbox itself */
.nearby-suppliers-grid .selection-box input[type="checkbox"] {
    width: 25px;       /* Set a larger width */
    height: 25px;      /* Set a larger height */
    background: #fff;
    border: 2px solid #555;
    border-radius: 4px;
    cursor: pointer;
	    top: 20px;
    position: relative;
    left: 20px;
}

/* Add style for the checked state (optional) */
.nearby-suppliers-grid .selection-box input[type="checkbox"]:checked {
    background: #0073aa; /* Change background color when checked */
}

/* Adjust image position if needed to prevent overlap */
.nearby-suppliers-grid .supplier-card .supplier-image {
    position: relative; /* Keep image position relative to the card */
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.nearby-suppliers-grid {
    margin-bottom: 30px;
}

.my-agents-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.my-agents-table th,
.my-agents-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
.my-agents-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}
.my-agents-table a {
  text-decoration: none;
  color: #0073aa;
}
.my-agents-table a:hover {
  text-decoration: underline;
}

.form-step {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}
.success-message {
    color: green;
    font-weight: bold;
	padding: 10px;
	
}
.error-message {
    color: red;
    font-weight: bold;
	padding: 10px;
}

/* Style the container for the form fields */
.multi-step-form-container .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; /* Adjust the space between fields as needed */
}

/* Style the 50% width fields */
.multi-step-form-container .form-field-50 {
    flex: 1 1 calc(50% - 10px); /* Sets base width to 50% minus half the gap */
    margin: 0;
}

/* Ensure password field spans the full width, if needed */
.multi-step-form-container .full-width-field {
    flex: 1 1 100%;
}

/* Make inputs take up the full width of their container */
.multi-step-form-container .form-row input {
    width: 100%;
    box-sizing: border-box; /* Ensures padding and border are included in the 100% width */
}


.radio-option-wrapper {
    /* Makes the container flow inline with other containers */
    display: inline-block; 
    
    /* Adds space between options */
    margin-right: 10px; 
    
    /* Optional: vertical alignment */
    vertical-align: middle; 
}

/* Optional: adjusts input margin slightly */
.radio-option-wrapper input[type="radio"] {
    margin-right: 2px;
    vertical-align: middle;
}

   /* CSS to align radio buttons and labels horizontally and wrap them */
    .form-field-50g {
        display: inline-flex; /* Use flexbox for the container */
        
        gap: 5px; /* Add some space between the options */
        align-items: center; /* Vertically center the input and label */
    }

    .gradiolabel {
        width: 100%; /* Ensure the main label takes full width */
		white-space: nowrap;
		margin-bottom: 0;
    }

    .radio-option-wrapper {
        display: flex; /* Use flexbox for the wrapper */
        align-items: center; /* Vertically center the input and label */
        gap: 5px; /* Add a small gap between the radio button and its label */
    }

    /* Optional: Ensure the labels have a pointer cursor when hovering */
    .radio-option-wrapper label {
        cursor: pointer;
    }

/* Styling for all form messages */
.form-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
    display: none; /* Hide by default */
}

.agent-registration-loader {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    background: #f2f4f7;
    color: #1b1f23;
    font-weight: 600;
}

/* Success message styling */
.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
	padding: 10px;
}

/* Error message styling */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
	padding: 10px;
}


label.glabel {
font-weight:600!important;
}



.mandate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.mandate-table thead {
    background-color: #f8f8f8;
}
.mandate-table th, .mandate-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}
.mandate-table th {
    font-weight: bold;
    color: #333;
}
.mandate-table tbody tr:hover {
    background-color: #f1f1f1;
}

.mandate-counter-block {
    border: 0px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.mandate-counter-block h3 {
    width: 100%;
    margin: 0 0 10px;
    color: #333;
}
.counter-item {
    font-size: 16px;
    line-height: 1.5;
}
.counter-item strong {
    font-weight: 700;
    margin-right: 5px;
}

.mandate-counter-block {
    display: flex; /* Arrange items horizontally */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 20px; /* Space between counter blocks */
    justify-content: center; /* Center the counter blocks */
    margin: 20px 0;
}
.totals-status-count {
  background-color: #333333; /* Darker grey color */
      display: flex; /* Arrange items horizontally */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 20px; /* Space between counter blocks */
    justify-content: center; /* Center the counter blocks */
    margin: 20px 0;
}
.mandate-counter-block .counter-item {
    display: flex;
    flex-direction: column; /* Stack the number and title vertically */
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5; /* Light grey background */
    border-radius: 8px; /* Optional: adds rounded corners */
    padding: 20px;
    text-align: center;
    width: 150px; /* Adjust width as needed */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
}

.mandate-counter-block .counter-item strong {
    font-size: 2.5em; /* Larger number */
    font-weight: bold;
    color: #333;
    display: block; /* Ensures the number is on its own line */
    order: 2; /* Forces the text to appear after the number */
}

.mandate-counter-block .counter-item span.counter-label {
    font-size: 0.9em;
    color: #666;
    display: block;
    margin-top: 5px; /* Spacing between the number and the title */
    order: 3; /* Forces the text to appear after the number */
}


.mandate-stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between columns */
    margin-bottom: 0px;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

.mandate-stat-block {
    flex: 1 1 22%; /* Distributes space relatively evenly for 4 columns */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

.mandate-stat-block h4 {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 0.9em;
}

.mandate-stat-block p {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.agents-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.agents-table th, .agents-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.agents-table th {
    background-color: #f2f2f2;
    color: #333;
}

.agents-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.agents-table tbody tr:hover {
    background-color: #f1f1f1;
}


/* Styling for all stat blocks */
.stat-block {
    /* Base styles for your blocks */
    padding: 15px;
    margin: 10px 0;
    background-color: #f4f4f4;
    box-sizing: border-box; /* Ensures padding/border is included in the width calculation */
    transition: width 0.5s ease-out; /* Smooth transition when the width changes (if using JS) */
}

/* Specific styling for the 2nd stat block with the percentage width */
.percentage-bar {
    /* Sets the border width to 10px */
    border: 10px solid #0073aa; 
    
    /* The 'width' property is set dynamically by the inline style in the PHP above 
       e.g., width: 66%; 
    */
}

/* Optional: Ensure the container manages the layout correctly */
.stat-block-container {
    display: flex; /* or use display: block for a vertical stack */
    flex-direction: column;
}


.mandate-stat-block.status-accepted {
    background-color: green;
    color: white; /* Optional: ensures text is readable on a green background */
	border:none;

}

.mandate-stat-block.status-finalisation {
    background-color: purple;
    color: white; /* Optional: ensures text is readable on a green background */
	border:none;

}

.mandate-stat-block.status-completed {
    background-color: black;
    color: white; /* Optional: ensures text is readable on a green background */
	border:none;

}

.mandate-stat-block.status-cancelled {
    background-color: red;
    color: white; /* Optional: ensures text is readable on a green background */
	border:none;

}

.mandate-stat-block.status-submitted {
    background-color: orange;
    color: white; /* Optional: ensures text is readable on a green background */
	border:none;

}

.mandate-stat-block-h4.status-accepted {
    color: white; /* Optional: ensures text is readable on a green background */
}

.mandate-stat-block-h4.status-finalisation {
    color: white; /* Optional: ensures text is readable on a green background */
}
.mandate-stat-block-h4.status-cancelled{
    color: white; /* Optional: ensures text is readable on a green background */
}
.mandate-stat-block-h4.status-completed {
    color: white; /* Optional: ensures text is readable on a green background */
}
.mandate-stat-block-h4.status-submitted {
    color: white; /* Optional: ensures text is readable on a green background */
}


/* Style for the inactive state wrapper */
.inactive-subscription {
    opacity: 0.5; /* Makes the content grey/faded */
    pointer-events: none; /* Prevents all clicks inside this container */
    cursor: not-allowed;
    position: relative;
}

/* Optional: Style the status message */
.subscription-status-message {
    color: #b30000;
    padding: 10px;
    border: 1px solid #b30000;
    background-color: #ffe5e5;
    margin-bottom: 15px;
    pointer-events: auto; /* Allows the user to select the text in the message */
}

/* Ensure links inside the active container behave normally */
.active-subscription a {
    pointer-events: auto;
    cursor: pointer;
}

.gboxlabel {
	min-height: 10px!important;
    height: 15px;
 }
 .gbox {
	min-height: 10px!important;
    height: 15px;
 }
.acf-field.acf-field-message.acf-field-691da06d50320.gboxlabel label {
	display: none;
	min-height: 10px!important;
    height: 15px;
 }
.acf-field.acf-field-message.acf-field-691db62fb9dfd.gboxlabel label {
	display: none;
	min-height: 10px!important;
    height: 15px;
 }
 
.form-group-full.checkbox label {
    display: block !important;
    vertical-align: top;
    position: relative;
    top: -25px;
	min-height: 10px!important;
    height: 15px;
}

.acf-form-submit{
    margin-top: 50px;
}


/* Mandate top info seller details */
.mandate-seller-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    margin: 8px 0 6px;
    color: #2f3b42;
    font-size: 14px;
}

.mandate-seller-details span {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.mandate-seller-details a {
    color: inherit;
    text-decoration: none;
}

.mandate-seller-details a:hover {
    text-decoration: underline;
}

/* Prevent selector card/link clicks being triggered from the checkbox area. */
.nearby-suppliers-grid .selection-box,
.mandacate-suppliers-list .selection-box {
    cursor: default;
}

.nearby-suppliers-grid .selection-box input[type="checkbox"],
.mandacate-suppliers-list .selection-box input[type="checkbox"] {
    cursor: pointer;
}

/* Mandacate v2.1.20: responsive mandate tables for seller/agent dashboards */
@media (max-width: 900px) {
    .mandate-counter-block {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .mandate-counter-block .counter-item,
    .mandate-counter-block .status-count {
        min-height: 120px;
        padding: 22px 14px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 6px 18px rgba(12, 22, 39, 0.08);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mandate-counter-block .counter-item strong,
    .mandate-counter-block .status-count strong {
        display: block;
        font-size: clamp(34px, 8vw, 56px);
        line-height: 1;
        margin: 0 0 12px;
    }

    .mandate-counter-block .counter-label {
        display: block;
        font-size: clamp(14px, 3.5vw, 18px);
        line-height: 1.25;
    }

    .mandate-table,
    .mandate-table thead,
    .mandate-table tbody,
    .mandate-table th,
    .mandate-table td,
    .mandate-table tr {
        display: block;
        width: 100%;
    }

    .mandate-table {
        border-collapse: separate;
        border-spacing: 0;
        background: transparent;
        box-shadow: none;
        margin-top: 18px;
        overflow: visible;
    }

    .mandate-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .mandate-table tbody tr {
        background: #fff;
        border: 1px solid #e8edf0;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(12, 22, 39, 0.08);
        margin: 0 0 16px;
        padding: 12px 14px;
        overflow: hidden;
    }

    .mandate-table tbody tr:hover {
        background: #fff;
    }

    .mandate-table td {
        border-bottom: 1px solid #eef2f4;
        padding: 12px 0;
        display: grid;
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        text-align: left;
        font-size: 15px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .mandate-table td:last-child {
        border-bottom: 0;
    }

    .mandate-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #333;
        line-height: 1.35;
    }

    .mandate-table td a {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .mandate-table .dashicons {
        vertical-align: middle;
    }

    .mandate-table .mandacate-pdf-cell {
        align-items: center;
    }

    .mandate-table .mandacate-pdf-btn,
    .mandacate-pdf-btn {
        width: fit-content;
        max-width: 100%;
        justify-content: center;
        white-space: normal;
    }
}

@media (max-width: 520px) {
    .mandate-counter-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mandate-counter-block .counter-item,
    .mandate-counter-block .status-count {
        min-height: 105px;
        padding: 18px 10px;
    }

    .mandate-table tbody tr {
        padding: 10px 12px;
        margin-bottom: 14px;
    }

    .mandate-table td {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 10px;
        font-size: 14px;
    }
}

/* Mandacate 2.1.21: [agency_table] mobile/tablet stacked cards */
@media (max-width: 1024px) {
  .active-subscription .agency-mandate-table,
  .active-subscription .agency-mandate-table thead,
  .active-subscription .agency-mandate-table tbody,
  .active-subscription .agency-mandate-table tr,
  .active-subscription .agency-mandate-table th,
  .active-subscription .agency-mandate-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .active-subscription .agency-mandate-table {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    min-width: 0 !important;
  }
  .active-subscription .agency-mandate-table thead {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
  }
  .active-subscription .agency-mandate-table tbody tr {
    margin: 0 0 16px !important;
    padding: 16px !important;
    background: #fff !important;
    border: 1px solid #e7edf0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 22px rgba(12,22,39,.08) !important;
  }
  .active-subscription .agency-mandate-table td {
    display: grid !important;
    grid-template-columns: 120px minmax(0,1fr) !important;
    gap: 12px !important;
    padding: 11px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #eef2f4 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    text-align: left !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
  .active-subscription .agency-mandate-table td:last-child { border-bottom: 0 !important; }
  .active-subscription .agency-mandate-table td::before {
    content: attr(data-label) !important;
    font-weight: 700 !important;
    color: #333 !important;
  }
  .active-subscription .agency-mandate-table td a {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
  .active-subscription .agency-mandate-table td[data-label="Address"] {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  .active-subscription .agency-mandate-table td[data-label="Address"] a {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 8px 0 0 !important;
    padding: 7px 10px !important;
    border-radius: 999px !important;
    background: #eef4f5 !important;
    text-decoration: none !important;
    color: #0b2b4c !important;
    font-size: 13px !important;
  }
}
@media (max-width: 560px) {
  .active-subscription .agency-mandate-table tbody tr { padding: 14px !important; }
  .active-subscription .agency-mandate-table td {
    grid-template-columns: 92px minmax(0,1fr) !important;
    gap: 10px !important;
    font-size: 14px !important;
  }
  .active-subscription .agency-mandate-table td[data-label="Mandate"] {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  .active-subscription .agency-mandate-table td[data-label="Mandate"] a {
    font-weight: 700 !important;
  }
}

/* Mandacate 2.1.22: stronger [agency_table] mobile/tablet stacked cards */
@media (max-width: 1024px) {
  table.agency-mandate-table, table.agency-mandate-table thead, table.agency-mandate-table tbody, table.agency-mandate-table tr, table.agency-mandate-table th, table.agency-mandate-table td { display: block !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important; box-sizing: border-box !important; }
  table.agency-mandate-table { border: 0 !important; border-collapse: separate !important; border-spacing: 0 !important; background: transparent !important; box-shadow: none !important; overflow: visible !important; table-layout: fixed !important; }
  table.agency-mandate-table thead { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
  table.agency-mandate-table tbody tr { margin: 0 0 16px !important; padding: 16px !important; background: #fff !important; border: 1px solid #e7edf0 !important; border-radius: 16px !important; box-shadow: 0 8px 22px rgba(12,22,39,.08) !important; }
  table.agency-mandate-table td { display: grid !important; grid-template-columns: 112px minmax(0,1fr) !important; align-items: start !important; gap: 10px !important; padding: 11px 0 !important; border: 0 !important; border-bottom: 1px solid #eef2f4 !important; background: transparent !important; white-space: normal !important; overflow: visible !important; overflow-wrap: anywhere !important; word-break: normal !important; text-align: left !important; font-size: 15px !important; line-height: 1.45 !important; }
  table.agency-mandate-table td:last-child { border-bottom: 0 !important; }
  table.agency-mandate-table td::before { content: attr(data-label) !important; display: block !important; font-weight: 700 !important; color: #333 !important; }
  table.agency-mandate-table td[data-label="Address"] { display: block !important; overflow-wrap: anywhere !important; }
  table.agency-mandate-table td[data-label="Address"]::before { margin-bottom: 6px !important; }
  table.agency-mandate-table td a { max-width: 100% !important; overflow-wrap: anywhere !important; word-break: break-word !important; }
  table.agency-mandate-table td[data-label="Address"] a { display: inline-flex !important; align-items: center !important; gap: 6px !important; width: fit-content !important; max-width: 100% !important; margin: 10px 0 0 !important; padding: 7px 11px !important; border-radius: 999px !important; background: #eef4f5 !important; text-decoration: none !important; color: #0b2b4c !important; font-size: 13px !important; line-height: 1.2 !important; }
  table.agency-mandate-table .dashicons { width: auto !important; height: auto !important; font-size: 18px !important; line-height: 1 !important; }
}
@media (max-width: 560px) {
  table.agency-mandate-table tbody tr { padding: 14px !important; }
  table.agency-mandate-table td { grid-template-columns: 88px minmax(0,1fr) !important; gap: 9px !important; font-size: 14px !important; }
  table.agency-mandate-table td[data-label="Mandate"] { display: block !important; }
  table.agency-mandate-table td[data-label="Mandate"]::before { margin-bottom: 6px !important; }
  table.agency-mandate-table td[data-label="Mandate"] a { display: inline-block !important; font-weight: 700 !important; }
}
