/**
 * Location Management Stylesheet
 * 
 * Purpose:
 *   Styles for the Location Management admin interface.
 *   Styled to match User Management for consistent look and feel.
 * 
 * @package VantageIt
 * @since 2026-06-01
 */

/* ===========================================================================================
   MAIN CONTAINER
   =========================================================================================== */

.rdg-lm-container {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
}

/* ===========================================================================================
   BREADCRUMBS
   =========================================================================================== */

.rdg-breadcrumbs {
  padding: 12px 0;
  margin-bottom: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdg-breadcrumb-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.rdg-breadcrumb-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.rdg-breadcrumb-separator {
  color: #a0aec0;
  font-weight: 400;
}

.rdg-breadcrumb-current {
  color: #718096;
  font-weight: 400;
}

/* ===========================================================================================
   BREADCRUMBS
   =========================================================================================== */

.rdg-breadcrumbs {
  padding: 12px 0;
  margin-bottom: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdg-breadcrumb-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.rdg-breadcrumb-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.rdg-breadcrumb-separator {
  color: #a0aec0;
  font-weight: 400;
}

.rdg-breadcrumb-current {
  color: #718096;
  font-weight: 400;
}

/* ===========================================================================================
   HEADER SECTION
   =========================================================================================== */

.rdg-lm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.rdg-lm-header h1 {
  margin: 0;
  font-size: 24px;
  color: #1a202c;
  font-weight: 600;
}

.rdg-um-title-section {
  flex: 1;
}

.rdg-um-subtitle {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #718096;
  font-weight: normal;
}

/* ===========================================================================================
   CONTROLS SECTION (Search & Filters)
   =========================================================================================== */

.rdg-lm-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
  flex-wrap: wrap;
}

/* Search Box */
.rdg-lm-search {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 250px;
}

.rdg-lm-search i {
  position: absolute;
  left: 12px;
  color: #a0aec0;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}

.rdg-lm-search input {
  width: 100% !important;
  padding: 10px 12px 10px 36px !important;
  border: 1px solid #c2cbd8 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  background-color: #ffffff !important;
  transition: all 0.2s ease !important;
  color: #2d3748 !important;
  height: auto !important;
  line-height: 1.5 !important;
  box-sizing: border-box !important;
}

.rdg-lm-search input::placeholder {
  color: #cbd5e0 !important;
}

.rdg-lm-search input:focus {
  outline: none !important;
  border-color: #3182ce !important;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1) !important;
  background-color: #ffffff !important;
}

/* Filter Controls */
.rdg-lm-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rdg-lm-filter select {
  padding: 10px 30px 10px 12px !important;
  border: 1px solid #c2cbd8 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  background-color: white !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex: 1 !important;
  min-width: 150px !important;
  color: #4a5568 !important;
  line-height: 1.5 !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 20px !important;
  padding-right: 30px !important;
  box-sizing: border-box !important;
}

.rdg-lm-filter select:focus {
  outline: none !important;
  border-color: #3182ce !important;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1) !important;
}

/* Reset Filters Button */
.rdg-lm-reset-btn {
  padding: 10px 15px !important;
  border: 1px solid #c2cbd8 !important;
  border-radius: 6px !important;
  background-color: #f7fafc !important;
  cursor: pointer !important;
  font-size: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  color: #4a5568 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

.rdg-lm-reset-btn:hover {
  background-color: #edf2f7 !important;
  border-color: #a0aec0 !important;
  box-shadow: none !important;
}

.rdg-lm-reset-btn:active {
  background-color: #e2e8f0 !important;
  transform: scale(0.98) !important;
}

.rdg-lm-reset-btn {
  padding: 10px 15px !important;
  border: 1px solid #c2cbd8 !important;
  border-radius: 6px !important;
  background-color: #f7fafc !important;
  cursor: pointer !important;
  font-size: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  color: #4a5568 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

.rdg-lm-reset-btn:hover {
  background-color: #edf2f7 !important;
  border-color: #a0aec0 !important;
  box-shadow: none !important;
}

.rdg-lm-reset-btn:active {
  background-color: #e2e8f0 !important;
  transform: scale(0.98) !important;
}

/* ===========================================================================================
   TABLE WRAPPER & TABLE STYLES
   =========================================================================================== */

.rdg-lm-table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  -webkit-overflow-scrolling: touch;
}

.rdg-lm-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  min-width: 700px;
}

/* Table Header */
.rdg-lm-table thead {
  background-color: #5b5b5b !important;
  border-bottom: 2px solid #e2e8f0;
  position: sticky;
  top: 0;
}

.rdg-lm-table thead th {
  padding: 15px;
  text-align: left;
  font-weight: bold !important;
  color: white !important;
  font-size: 13px;
  text-transform: none !important;
  letter-spacing: 0.5px;
}

/* Table Body Rows */
.rdg-lm-table tbody td {
  padding: 15px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #2d3748;
}

.rdg-lm-table tbody tr {
  transition: background-color 0.1s ease;
}

.rdg-lm-table tbody tr:hover {
  background-color: #e9ecef !important;
}

.rdg-lm-table tbody tr:last-child td {
  border-bottom: none;
}

.rdg-lm-table .rdg-lm-location-id {
  font-weight: 600;
  color: #2d3748;
  font-family: 'Courier New', monospace;
}

/* ===========================================================================================
   TABLE COLUMN WIDTHS (RESPONSIVE)
   =========================================================================================== */

.rdg-lm-table .rdg-lm-col-store-id {
  width: 12%;
  min-width: 80px;
}

.rdg-lm-table .rdg-lm-col-store-name {
  width: 18%;
  min-width: 120px;
}

.rdg-lm-table .rdg-lm-col-address {
  width: 28%;
  min-width: 180px;
}

.rdg-lm-table .rdg-lm-col-client-rep {
  width: 15%;
  min-width: 100px;
}

.rdg-lm-table .rdg-lm-col-status {
  width: 15%;
  min-width: 100px;
}

.rdg-lm-table .rdg-lm-col-actions {
  width: 12%;
  min-width: 80px;
  text-align: center;
}

/* ===========================================================================================
   TABLE HEADER & BODY
   =========================================================================================== */

.rdg-lm-status {
  padding: 4px 10px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  letter-spacing: 0.5px !important;
  border: 1px solid transparent !important;
}

.rdg-lm-status.active {
  background: #198754 !important;
  color: #ffffff !important;
  border-color: #198754 !important;
}

.rdg-lm-status.inactive {
  background: #f8d7da !important;
  color: #842029 !important;
  border-color: #f5c2c7 !important;
}

/* ===========================================================================================
   ACTIONS
   =========================================================================================== */

.rdg-lm-actions {
  /* display: flex; */
  /* gap: 8px;
  justify-content: center; */
  text-align: center;
  /* width: 10%; */
}

.rdg-lm-btn-edit,
.rdg-lm-btn-more {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 16px !important;
  color: #718096 !important;
  padding: 5px !important;
  margin: 0 3px !important;
  transition: color 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.rdg-lm-btn-edit:hover,
.rdg-lm-btn-more:hover {
  color: #3182ce !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.rdg-lm-btn-edit:active,
.rdg-lm-btn-more:active {
  color: #2c5aa0 !important;
  background: none !important;
}

/* ===========================================================================================
   MODAL OVERLAY & MODAL
   =========================================================================================== */

.rdg-lm-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}

.rdg-lm-modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.rdg-lm-modal {
  display: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s;
  /* Mobile-first: default values for small screens */
  max-width: 100% !important;
  width: 95% !important;
  max-height: 95vh !important;
}

.rdg-lm-modal.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===========================================================================================
   MODAL HEADER
   =========================================================================================== */

.rdg-lm-modal-header {
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7fafc;
}

.rdg-lm-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1a202c;
}

.rdg-lm-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #a0aec0;
  transition: color 0.2s;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdg-lm-modal-close:hover {
  color: #718096;
}

/* ===========================================================================================
   MODAL BODY
   =========================================================================================== */

.rdg-lm-modal-body {
  padding: 20px;
  max-height: calc(90vh - 160px);
  overflow-y: auto;
}

/* ===========================================================================================
   FORM GROUPS & INPUTS
   =========================================================================================== */

.rdg-lm-form-group {
  margin-bottom: 16px;
}

.rdg-lm-form-group:last-child {
  margin-bottom: 0;
}

.rdg-lm-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
}

.rdg-lm-form-group input,
.rdg-lm-form-group select,
.rdg-lm-form-group textarea {
  width: 100%;
  padding: 10px 12px !important;
  border: 1px solid #c2cbd8 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
  color: #2d3748 !important;
  line-height: 1.5 !important;
  height: auto !important;
}

.rdg-lm-form-group input:focus,
.rdg-lm-form-group select:focus,
.rdg-lm-form-group textarea:focus {
  outline: none !important;
  border-color: #3182ce !important;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1) !important;
  background-color: #ffffff !important;
}

.rdg-lm-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.rdg-lm-form-group input:disabled,
.rdg-lm-form-group select:disabled {
  background: #f7fafc !important;
  cursor: not-allowed;
  color: #a0aec0 !important;
  border-color: #e2e8f0 !important;
}

.rdg-lm-form-error {
  color: #c53030;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* Checkbox Styles */
.rdg-lm-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-weight: 500;
  color: #2d3748;
  cursor: pointer;
  user-select: none;
}

.rdg-lm-checkbox-label input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  border: 1px solid #c2cbd8 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #ffffff !important;
  position: relative;
  transition: all 0.2s ease !important;
  margin-bottom: -4px;
  margin-right: 4px;
}

.rdg-lm-checkbox-label input[type="checkbox"]:hover {
  border-color: #3182ce !important;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1) !important;
}

.rdg-lm-checkbox-label input[type="checkbox"]:checked {
  background-color: #007bff !important;
  border-color: #007bff !important;
}

.rdg-lm-checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Store ID Display (Read-only) */
.rdg-lm-store-id-display {
  padding: 10px 12px;
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  color: #2d3748;
  font-weight: 500;
  display: block;
}

/* ===========================================================================================
   MODAL FOOTER
   =========================================================================================== */

.rdg-lm-modal-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  background: #f7fafc;
}

/* ===========================================================================================
   BUTTONS
   =========================================================================================== */

.rdg-lm-btn-submit,
.rdg-lm-btn-cancel {
  padding: 10px 20px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  height: auto !important;
}

.rdg-lm-btn-submit {
  background: #007bff !important;
  color: white !important;
}

.rdg-lm-btn-submit:hover {
  background: #0056b3 !important;
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.15) !important;
  transform: translateY(-1px) !important;
}

.rdg-lm-btn-submit:active {
  background: #004085 !important;
  transform: translateY(0) !important;
}

.rdg-lm-btn-submit:disabled {
  background: #c2cbd8 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

.rdg-lm-btn-cancel {
  background: #f0f3f7 !important;
  color: #4a5568 !important;
  border: 1px solid #c2cbd8 !important;
}

.rdg-lm-btn-cancel:hover {
  background: #edf2f7 !important;
  border-color: #a0aec0 !important;
  box-shadow: none !important;
}

.rdg-lm-btn-cancel:active {
  background: #e2e8f0 !important;
}

/* ===========================================================================================
   ALERT MESSAGES
   =========================================================================================== */

.rdg-alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid transparent;
  animation: slideDown 0.3s;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.rdg-alert-success {
  background: #198754;
  color: #22543d;
  border-color: #48bb78;
}

.rdg-alert-error {
  background: #fed7d7;
  color: #742a2a;
  border-color: #f56565;
}

.rdg-alert-warning {
  background: #feebc8;
  color: #7c2d12;
  border-color: #ed8936;
}

.rdg-alert-info {
  background: #bee3f8;
  color: #2c5282;
  border-color: #4299e1;
}

/* ===========================================================================================
   PAGINATION
   =========================================================================================== */

/* Pagination Container (holds info + controls together) */
.rdg-lm-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 80px;
  padding: 20px 5px;
  border-top: 1px solid #e2e8f0;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.rdg-lm-pagination-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: #718096;
  padding: 0 5px;
}

.rdg-lm-showing {
  font-weight: 500;
}

.rdg-lm-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

/* Pagination Buttons */
.rdg-lm-page-btn {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  color: #4a5568;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
}

.rdg-lm-page-btn:hover {
  background-color: #edf2f7;
  border-color: #cbd5e0;
  color: #2d3748;
}

.rdg-lm-page-btn:active {
  transform: scale(0.95);
}

/* Active Page Button */
.rdg-lm-page-btn.rdg-lm-page-active {
  background-color: #007bff !important;
  color: white !important;
  border-color: #007bff !important;
  font-weight: 600 !important;
}

.rdg-lm-page-btn.rdg-lm-page-active:hover {
  background-color: #0056b3 !important;
}

/* Pagination Dots */
.rdg-lm-page-dots {
  padding: 0 5px;
  color: #cbd5e0;
  cursor: default;
}

/* Prev/Next Navigation Icons */
.rdg-lm-page-prev,
.rdg-lm-page-next {
  min-width: 40px;
}

/* ===========================================================================================
   RESPONSIVE DESIGN - DESKTOP (769px+)
   =========================================================================================== */

@media (min-width: 769px) {
  .rdg-lm-modal {
    max-width: 500px !important;
    width: 90% !important;
    max-height: 90vh !important;
  }
}

/* ===========================================================================================
   RESPONSIVE DESIGN - MEDIUM PHONES (481px - 768px)
   =========================================================================================== */

@media (min-width: 481px) and (max-width: 768px) {
  .rdg-lm-container {
    padding: 15px;
  }

  .rdg-lm-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .rdg-lm-header h1 {
    font-size: 20px;
  }

  .rdg-lm-controls {
    flex-direction: column;
    width: 100%;
  }

  .rdg-lm-search {
    width: 100%;
  }

  .rdg-lm-filter {
    width: 100%;
    justify-content: space-between;
  }

  .rdg-lm-table {
    font-size: 12px;
  }

  .rdg-lm-table thead th {
    padding: 12px 10px;
    font-size: 12px;
  }

  .rdg-lm-table tbody td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .rdg-lm-table-wrapper {
    margin-bottom: 20px;
  }

  .rdg-lm-col-store-id {
    min-width: 70px !important;
  }

  .rdg-lm-col-store-name {
    min-width: 110px !important;
  }

  .rdg-lm-col-address {
    min-width: 150px !important;
  }

  .rdg-lm-col-client-rep {
    min-width: 90px !important;
  }

  .rdg-lm-col-status {
    min-width: 90px !important;
  }

  .rdg-lm-col-actions {
    min-width: 70px !important;
  }

  .rdg-lm-modal {
    width: 90% !important;
    max-width: 100% !important;
    max-height: 95vh !important;
  }

  .rdg-lm-modal-header {
    padding: 18px 20px !important;
  }

  .rdg-lm-modal-title {
    font-size: 19px !important;
  }

  .rdg-lm-modal-body {
    padding: 20px !important;
  }

  .rdg-lm-modal-footer {
    padding: 14px 20px !important;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .rdg-lm-btn-submit,
  .rdg-lm-btn-cancel {
    width: 100%;
  }
}

/* ===========================================================================================
   RESPONSIVE DESIGN - SMALL PHONES (320px - 480px)
   =========================================================================================== */

@media (max-width: 480px) {
  .rdg-lm-container {
    padding: 10px;
  }

  .rdg-lm-header h1 {
    font-size: 18px;
  }

  .rdg-lm-modal {
    width: 80% !important;
    max-width: 100% !important;
    max-height: 95vh !important;
    border-radius: 16px !important;
  }

  .rdg-lm-modal-header {
    padding: 18px 16px !important;
  }

  .rdg-lm-modal-title {
    font-size: 18px !important;
    font-weight: 600 !important;
  }

  .rdg-lm-modal-body {
    padding: 18px 16px !important;
    font-size: 13px !important;
  }

  .rdg-lm-form-group {
    margin-bottom: 16px !important;
  }

  .rdg-lm-form-group label {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
  }

  .rdg-lm-form-input {
    padding: 10px 12px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
  }

  .rdg-lm-modal-footer {
    padding: 14px 16px !important;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .rdg-lm-btn-submit,
  .rdg-lm-btn-cancel {
    width: 100%;
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  .rdg-lm-table {
    font-size: 11px;
    min-width: 600px;
  }

  .rdg-lm-table thead th {
    padding: 10px 8px;
    font-size: 11px;
  }

  .rdg-lm-table tbody td {
    padding: 10px 8px;
    font-size: 11px;
  }

  .rdg-lm-table-wrapper {
    margin-bottom: 15px;
    border-radius: 6px;
  }

  .rdg-lm-col-store-id {
    min-width: 65px !important;
  }

  .rdg-lm-col-store-name {
    min-width: 100px !important;
  }

  .rdg-lm-col-address {
    min-width: 130px !important;
  }

  .rdg-lm-col-client-rep {
    min-width: 80px !important;
  }

  .rdg-lm-col-status {
    min-width: 80px !important;
  }

  .rdg-lm-col-actions {
    min-width: 65px !important;
  }

  .rdg-lm-btn-edit {
    width: 100%;
  }
}

/* ===========================================================================================
   UTILITY CLASSES
   =========================================================================================== */

.rdg-lm-text-center {
  text-align: center;
}

.rdg-lm-text-muted {
  color: #a0aec0;
}

.rdg-lm-mt-20 {
  margin-top: 20px;
}

.rdg-lm-mb-20 {
  margin-bottom: 20px;
}

.rdg-lm-hidden {
  display: none !important;
}
