h1 {
  font-size: 25px;
  text-align: center;
}

.tabs {
  justify-content: center;
}
.material-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
}

.material-tabs li {
  list-style: none;
  width: 140px;
  height: 140px;
  border: 2px solid #bfbfbf;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
}

.material-tabs li img {
  width: 40px;
  margin-bottom: 8px;
}

.material-tabs li a {
  text-decoration: none;
  color: #943641;
}

.material-tabs li span {
  display: block;
  font-size: 15px;
  line-height: 16px;
}
.material-tabs li {
  transition: 0.3s ease;
}

.material-tabs li:hover {
  border: 4px solid rgb(244, 144, 144);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.material-tabs li.active {
  background-color: #110e0e;
  border: 2px solid #c62828;
  transform: scale(1.05);
}

.material-tabs li.active a,
.material-tabs li.active span {
  color: #fff !important;
}

.header-ads {
  font-size: 24px;
  font-family: sans-serif;
  color: black;
  font-weight: bold;
}

.table-header {
  background: #ffffff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 9%);
  margin-top: 35px;
  width: 78%;
}

.advertsing-material-table {
  width: 100%;
  margin-top: 15px;

  border-bottom: 3px solid gainsboro;
}

.table-head {
  border-bottom: 3px solid gainsboro;
  background-color: #f5f5f59c;
}

.tbl-heading {
  padding: 3px;
}

.materia-content {
  margin-top: 9px;
}

.action-icons {
  padding: 5px;
}

.main-table {
  display: flex;
}

.features-menu {
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
  margin-top: 35px;
  width: 20%;
  margin-left: 20px;
  height: 61rem;
}

.fea-hing {
  font-size: 24px;
  font-family: sans-serif;
  padding-left: 12px;
  color: #110e0e;
}

.feature-des {
  text-align: center;
}

.feature-img {
  width: 100%;
  max-height: 400px;
  margin-bottom: 15px;
  padding: 20px;
}



.fea-de {
  text-align: center;
  color: rgb(81, 81, 246);
  font-weight: bold;
  font-family: sans-serif;
}

.bulletin-board {
  padding: 20px;
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  font-family: sans-serif;
}

.bultin-brd-head {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  display: block;
  margin-bottom: 18px;
}

.bultin-brd-img {
  width: 100%;
  max-height: 380px;
  margin-bottom: 18px;
}

.bultin-brd-details {
  font-size: 20px;
  color: #2b2b2b;
  text-decoration: none;
  font-weight: bold;
}

.advertising-material-table{
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
    border-bottom: 3px solid gainsboro;
}
.advertising-material-table td.table-img-1,
.advertising-material-table td.table-img-2 {
  width: 200px;
  vertical-align: middle;
}


.advertising-material-table td.table-img-1 img,
.advertising-material-table td.table-img-2 img {
  width: 100%;
  max-width: 135px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 20px auto;
  margin-left: 0px;
}


thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-bottom: 3px solid #80808059;
  padding-top: 13px;
  padding-bottom: 10px;

}

.table-img {
    width: 360px;
    vertical-align: middle;
}


.img-wrapper {
    display: flex;
    gap: 22px;
    align-items: center;
}


.img-box {
    width: 160px;
    height: 100px;
    background: #f4f4f4;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-box.placeholder {
    background: #eee;
    border: 1px dashed #ccc;
}

.add-new-ad-button{
  float: right;
}

/* Drag and Drop Styles */
/* Base row */
.table-body {
    background: #fff;
    transition: 
        box-shadow 0.2s ease,
        transform 0.15s ease,
        background 0.2s ease;
    cursor: grab;
}

/* Hover hint */
.table-body:hover {
    background: #f9fafb;
}

/* While dragging */
.table-body.dragging {
    cursor: grabbing;
    opacity: 0.85;
    background: #ffffff;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.08);
    transform: scale(1.01);
    z-index: 10;
}

/* Smooth row spacing illusion */
#materials-sortable tr {
    position: relative;
}

/* Drag handle styling */
.drag-handle {
    cursor: grab;
    color: #6b7280; /* neutral gray */
    font-size: 15px;
    padding: 6px;
    border-radius: 4px;
    transition: 
        background 0.15s ease,
        color 0.15s ease;
}

.drag-handle:hover {
    background: #eef2f7;
    color: #111827;
}

/* While row is dragging, handle changes */
.table-body.dragging .drag-handle {
    cursor: grabbing;
    color: #111827;
}

/* Disable text selection during drag */
.table-body,
.drag-handle {
    user-select: none;
}

/* Optional: subtle drop indicator */
.table-body::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
}

.table-body.dragging::after {
    background: #2563eb; /* subtle blue accent */
}
.table-body:hover .drag-handle::after {
    content: 'Drag to reorder';
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
}


/* Delete Modal Styles */
.delete-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.delete-modal.show {
    display: flex;
}

.delete-modal-content {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    width: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.delete-modal-content h3 {
    margin: 0 0 8px;
}

.delete-modal-content p {
    color: #6b7280;
    font-size: 14px;
}

.delete-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.delete-actions button {
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Delete Modal Styles */
/* Overlay */
/* ============================
   Overlay (fade + blur)
============================ */
.delete-modal {
    position: fixed;
    inset: 0;

    background: rgba(17, 24, 39, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease;
}

.delete-modal.active {
    opacity: 1;
    pointer-events: auto;
    background: rgba(17, 24, 39, 0.55);
}

/* ============================
   Modal container
============================ */
.delete-modal-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 34px 26px;
    width: 420px;
    max-width: 92%;
    text-align: center;

    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.18);

    transform:
        translateY(26px)
        scale(0.94);

    opacity: 0;

    transition:
        transform 0.45s cubic-bezier(0.22, 1.25, 0.36, 1),
        opacity 0.35s ease;
}

/* Animate in */
.delete-modal.active .delete-modal-content {
    transform:
        translateY(0)
        scale(1);
    opacity: 1;
}

/* ============================
   Delete icon (layered motion)
============================ */
.delete-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    transform: scale(0.85);
    opacity: 0;

    transition:
        transform 0.35s cubic-bezier(0.22, 1.3, 0.36, 1),
        opacity 0.3s ease;
}

.delete-modal.active .delete-icon {
    transform: scale(1);
    opacity: 1;
}

/* ============================
   Title
============================ */
.delete-modal-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.01em;
}

/* ============================
   Description text
============================ */
.delete-modal-content p {
    margin: 0 0 26px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================
   Actions
============================ */
.delete-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* ============================
   Buttons
============================ */
.btn-secondary {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;

    transition:
        background 0.15s ease,
        box-shadow 0.15s ease;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-secondary:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Danger button */
.btn-danger {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    transition:
        background 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.08s ease;
}

.btn-danger:hover {
    background: #b91c1c;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

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

/* ============================
   Close animation polish
============================ */
.delete-modal:not(.active) .delete-modal-content {
    transform: translateY(18px) scale(0.96);
    opacity: 0;
}

.audio-player{
  width: 100%;
}

.file{
  padding-left: 15px;
  padding-right: 15px
}

.active-tab{
  background: #580a0a00 !important;
  border: 4px solid #a10a0ae3 !important;
  width: 150px !important;
  height: 150px !important;
  box-shadow: 0px 2px 18px 0px #8080807a !important;
}

th {
  font-family: 'Anton', sans-serif !important;
  font-weight: 400;
  font-size: 17px;
}

.contassiner{
  width: 100%;
  padding: 0 16rem;
}


/* Materials Details Page */
/* Header Buttons */
.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.btn-blue { background-color: #4384b9; }
.btn-red { background-color: #e6645a; }

/* Titles */
.main-title {
    font-size: 28px;
    color: #0e0202;
    margin-bottom: 40px;
    font-weight: normal;
    text-align: left;
}

.column-title {
    color: #0066a1;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Grid System */
.asset-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.asset-column {
    flex: 1;
}

.divider {
    border-left: 2px solid #333;
    padding-left: 40px;
}

.logo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-preview img {
    /*max-width: 250px;*/
}

/* Meta Data */
.description-meta p {
    margin: 5px 0;
    font-size: 16px;
    color: #666;
}

.description-meta strong {
    color: #333;
}

/* Download Rows */
.download-row {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    background-color: #3b66b0;
    color: white;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: bold;
    font-size: 0.8rem;
}

.subtext {
    color: #888;
    font-size: 17px;
    flex-grow: 1;
}

/* FTP Section */
.footer-section {
    margin-top: 60px;
}

.ftp-button {
    background-color: #4a6b8a;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    cursor: pointer;
}

.restrictions {
    margin-top: 30px;
}

.restrictions h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
}

.restrictions p {
    color: #0066a1;
    font-size: 17px;
}

.tire-details tr, td{
    border: none;
}
.tire-images{
    width: 50%;
}


/* Status Tag */
/* Container to hold the image and tag together */
.status-wrapper {
    /*position: relative;*/
    display: inline-block;
    line-height: 0; /* Removes bottom gap under image */
    border-radius: 8px;
    overflow: hidden; /* Rounds the image corners too */
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
}

.img1 {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Base Status Tag Style */
.status-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px; /* Slightly squared circles look more modern */
    
    /* Glassmorphism Effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    vertical-align: middle;
}

/* Status: Live (Green) */
.status-live {
    background-color: rgba(40, 167, 69, 0.85); /* Semi-transparent green */
    color: #ffffff;
}

/* Status: Coming Soon (Yellow/Gold) */
.status-coming {
    background-color: rgba(255, 193, 7, 0.9);
    color: #000000;
}

/* Status: Expired (Red) */
.status-expired {
    background-color: rgba(220, 53, 69, 0.85);
    color: #ffffff;
}

/* The Dot Indicator */
.status-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #fff; /* White dot looks cleaner on solid colors */
    display: inline-block;
}

/* Pulse animation for the Live dot */
.status-live::before {
    background-color: #fff;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Placeholder for "No Image" */
.no-image-placeholder {
    background: #f8f9fa;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    border: 1px dashed #dee2e6;
    border-radius: 8px;
}


/* Permission modal */
:root {
  --primary-blue: #0284c7;
  --hover-blue: #0369a1;
  --border-color: #e2e8f0;
  --label-color: #475569;
}

/* Modal Overlay: Darkened, slightly translucent background */
.ftpportal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  display: flex; /* Centers the modal */
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensures it's on top */
}

/* Modal Container: The white box itself */
.ftpportal-modal-container {
  background-color: #ffffff;
  width: 90%;
  max-width: 440px; /* Adjust to match image scale */
  border-radius: 14px; /* Soft rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow */
  position: relative; /* For positioning the close button */
  overflow: hidden; /* Ensures contents respect border radius */
}

/* Close Button (X): Positions the icon in the top right */
.ftpportal-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #a0a0a0; /* Subtle grey for the X */
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.ftpportal-modal-close:hover {
  color: #606060;
}

/* Internal Content Padding */
.ftpportal-modal-content {
  padding: 40px 30px; /* Generous top padding, side padding */
}

/* Modal Title */
.ftpportal-modal-title {
  margin: 0 0 15px 0;
  font-size: 28px; /* Prominent size */
  font-weight: 500;
  color: #333333;
}

/* Modal Description Text */
.ftpportal-modal-description {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #757575; /* Medium grey for the body text */
}

/* --- Visual CAPTCHA Placeholder Styling --- */
.ftpportal-captcha-placeholder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  background-color: #f9f9f9;
  width: 300px; /* Common reCAPTCHA width */
  height: 74px; /* Common reCAPTCHA height */
  margin: 0 auto 30px auto; /* Centers the widget and adds bottom margin */
  padding: 0 12px;
  box-sizing: border-box;
  font-family: Roboto, helvetica, arial, sans-serif;
}

.captcha-checkbox-area {
  display: flex;
  align-items: center;
}

.captcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  background-color: #ffffff;
  border-radius: 2px;
  margin-right: 12px;
  cursor: pointer;
}

.captcha-text {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}

.captcha-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
}

.captcha-logo {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
}

.captcha-policy-text {
  font-size: 10px;
  color: #555555;
  font-weight: 400;
  margin-bottom: 2px;
}

.captcha-policy-links {
  font-size: 8px;
  color: #555555;
  cursor: pointer;
}
/* --- End CAPTCHA Styling --- */

/* Main Purple Action Button */
.ftpportal-btn-submit {
  display: block;
  width: 100%; /* Full width within its container */
  padding: 16px;
  background-color: #7367f0; /* The key purple color from image */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
}

.ftpportal-btn-submit:hover {
  background-color: #5e50eb; /* Slightly darker purple on hover */
}

.ftpportal-modal-overlay {
    display: none; /* hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.ftpportal-modal-overlay.active {
    display: flex;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   Add this to the bottom of your CSS file
========================================= */

/* 1. Base fixes for layout flexibility */
*, *::before, *::after {
  box-sizing: border-box;
}

.material-tabs, 
.asset-grid, 
.img-wrapper {
  flex-wrap: wrap; /* Allows flex items to drop to the next line */
}


.bultin-brd-img {
    max-height: 50rem;   /* adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
}

.bultin-brd-img img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.bultin-brd-img::-webkit-scrollbar {
    width: 6px;
}

.bultin-brd-img::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* -----------------------------------------
   Large Devices (Small Laptops, max-width: 1200px)
   ----------------------------------------- */
@media screen and (max-width: 1200px) {
  .contassiner {
    padding: 0 8rem; /* Scale down the extreme 16rem padding */
  }
  
  .table-header {
    width: 70%;
  }
  
  .features-menu {
    width: 28%;
  }
}

/* -----------------------------------------
   Medium Devices (Tablets, max-width: 992px)
   ----------------------------------------- */
@media screen and (max-width: 992px) {
  .contassiner {
    padding: 0 4rem;
  }

  /* Stack the main table and sidebar */
  .main-table {
    flex-direction: column;
  }

  .table-header {
    width: 100%;
    margin-top: 20px;
  }

  .features-menu {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  /* Stack the asset grid */
  .asset-grid {
    flex-direction: column;
    gap: 20px;
  }

  .divider {
    border-left: none;
    border-top: 2px solid #333;
    padding-left: 0;
    padding-top: 30px;
  }
  
  .bultin-brd-img img{
      margin-left: auto;
      margin-right: auto;
  }
}

/* -----------------------------------------
   Small Devices (Mobile Landscape, max-width: 768px)
   ----------------------------------------- */
@media screen and (max-width: 768px) {
  .contassiner {
    padding: 0 2rem;
  }

  /* Shrink Tabs slightly */
  .material-tabs {
    gap: 15px;
  }

  .material-tabs li, 
  .active-tab {
    width: 110px !important;
    height: 110px !important;
    padding: 10px;
  }

  .material-tabs li img {
    width: 30px;
  }

  /* Make tables horizontally scrollable instead of squishing */
  .table-header {
    padding: 15px;
  }

  .advertising-material-table, 
  .tire-details {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap; 
  }

  /* Shrink images slightly */
  .img-wrapper {
    gap: 10px;
  }

  .img-box {
    width: 120px;
    height: 80px;
  }

  .bultin-brd-img, 
  .feature-img {
    max-height: 462px;
  }
  .main-layout{
      display: block;
  }
  
  .features-menu{
      width: 100%;
  }
}

/* -----------------------------------------
   Extra Small Devices (Mobile Portrait, max-width: 576px)
   ----------------------------------------- */
@media screen and (max-width: 576px) {
  .contassiner {
    padding: 0 1rem;
  }

  /* Transform tabs into a responsive 2-column grid */
  .material-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .material-tabs li, 
  .active-tab {
    width: 100% !important;
    height: auto !important;
    min-height: 110px;
  }

  /* Adjust Typography */
  .main-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  h1, .header-ads, .fea-hing, .bultin-brd-head {
    font-size: 20px;
  }

  /* Make Buttons Full Width */
  .header-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .add-new-ad-button {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }

  /* Modals */
  .delete-modal-content, 
  .ftpportal-modal-container {
    width: 95%;
    padding: 25px 15px;
  }

  .ftpportal-modal-title {
    font-size: 22px;
  }

  /* Keep CAPTCHA container inside the screen */
  .ftpportal-captcha-placeholder {
    width: 100%;
    max-width: 100%;
    padding: 0 8px;
  }
}

.table-img-1 {
    position: relative;
}

.status-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

/* Optional spacing improvement */
.status-wrapper img {
    display: block;
}


