.elementor-28158 .elementor-element.elementor-element-4e728dd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28158 .elementor-element.elementor-element-75779cdd{--display:flex;}.elementor-28158 .elementor-element.elementor-element-cce863b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28158 .elementor-element.elementor-element-f05301b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-28158 .elementor-element.elementor-element-4e728dd{--margin-top:0px;--margin-bottom:160px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-28158 .elementor-element.elementor-element-4e728dd{--content-width:600px;}}/* Start custom CSS for html, class: .elementor-element-1009e27 *//* V2 - Styling for Responsive & Boxy Troubleshooting Table */

.responsive-troubleshooting-table-wrapper {
  margin: 2em 0;
  width: 100%;
  direction: rtl; /* Set direction for Persian */
}

.troubleshooting-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 20px rgba(0, 48, 87, 0.08);
  border-radius: 12px;
  overflow: hidden; /* Essential for border-radius on tables */
  font-family: inherit;
}

/* --- Desktop Styles --- */
.troubleshooting-table thead {
  /* -- Point 1 FIX: Lighter blue, white & bold text for high contrast -- */
  background-color: #2980B9;
  color: #ffffff; 
}

.troubleshooting-table th {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.troubleshooting-table th,
.troubleshooting-table td {
  padding: 16px 20px;
  text-align: right;
  vertical-align: middle;
}

.troubleshooting-table tbody tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.troubleshooting-table tbody tr:nth-of-type(even) {
  background-color: #f8f9fa;
}

.troubleshooting-table tbody tr:last-of-type {
  border-bottom: 2px solid #2980B9; /* Footer line matching the header color */
}

.troubleshooting-table tbody tr:hover {
  background-color: #e2e6ea;
}


/* --- Responsive Mobile Styles (The "Boxy" Layout) --- */
/* -- Point 2 FIX: Complete redesign for mobile view -- */
@media screen and (max-width: 768px) {
  .troubleshooting-table thead {
    display: none; /* Hide header on mobile */
  }

  .troubleshooting-table,
  .troubleshooting-table tbody,
  .troubleshooting-table tr,
  .troubleshooting-table td {
    display: block;
    width: 100%;
  }

  .troubleshooting-table tr {
    margin-bottom: 25px; /* Space between cards */
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 48, 87, 0.1);
    overflow: hidden; /* Keep content inside the rounded corners */
  }
  
  .troubleshooting-table tr:last-of-type {
      margin-bottom: 0;
  }

  .troubleshooting-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: right;
  }

  .troubleshooting-table td:last-child {
    border-bottom: none;
  }

  /* Style the first cell of each card as a header */
  .troubleshooting-table td:first-child {
      background-color: #f1f5f9;
      font-weight: bold;
      color: #1e293b;
  }

  /* The magic for creating label/value pairs */
  .troubleshooting-table td::before {
    content: attr(data-label) " :"; /* Add content from data-label and a colon */
    float: right;
    font-weight: bold;
    color: #555;
    margin-left: 10px;
  }

  /* The first cell (our card header) doesn't need its own label */
  .troubleshooting-table td:first-child::before {
      display: none;
  }
}/* End custom CSS */