/* Indicative Rates Widget Styles - Ultra Dynamic Version */
.ir-container {
  background: white;
  /*border: 1px solid #e5e7eb;*/
  /*border-radius: 8px;*/
  padding: 0px !important;
  /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;*/
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
  /*position: relative;*/
  /*overflow: hidden;*/
}

/* Animation Classes */
.ir-animated.ir-fade {
  animation: irFadeIn 0.5s ease-in-out;
}

.ir-animated.ir-slide {
  animation: irSlideIn 0.5s ease-in-out;
}

.ir-animated.ir-bounce {
  animation: irBounceIn 0.6s ease-in-out;
}

.ir-animated.ir-zoom {
  animation: irZoomIn 0.4s ease-in-out;
}

@keyframes irFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes irSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes irBounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes irZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Header Styles */
.ir-header {
  margin-bottom: 24px;
  text-align: left;
}

.ir-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.ir-description {
  color: #6b7280;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Tabs Navigation */
.ir-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: center;
  border-bottom: 1px solid #C6CAD1 !IMPORTANT;
}

.ir-tabs-nav::-webkit-scrollbar {
  display: none;
}

.ir-container.ir-tabs-left .ir-tabs-nav,
.ir-container.ir-tabs-right .ir-tabs-nav {
  flex-direction: column;
  border-bottom: none;
  border-right: 1px solid #e5e7eb;
  width: 200px;
  margin-right: 24px;
}

.ir-container.ir-tabs-right .ir-tabs-nav {
  border-right: none;
  border-left: 1px solid #e5e7eb;
  margin-right: 0;
  margin-left: 24px;
}

.ir-container.ir-tabs-bottom .ir-tabs-nav {
  order: 2;
  margin-bottom: 0;
  margin-top: 24px;
  border-bottom: none;
  border-top: 1px solid #e5e7eb;
}

.ir-tab {
  background: none;
  border: none;
  padding: 12px 0px;
  cursor: pointer;
  font-size: 18px;
  color: #686868 !IMPORTANT;
  font-weight: 600 !important;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: fit-content;
  position: relative;
  border-radius: 0;
}

.ir-tab:hover {
}

.ir-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  font-weight: 500;
}

.ir-tab i,
.ir-tab svg {
  font-size: 16px;
  width: 20px;
  height: 20px;
}

/* Filters Section */
.ir-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.ir-filters-left,
.ir-filters-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ir-filters-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

/* Search Wrapper */
.ir-search-wrapper {
  position: relative;
  /* font-family: "Lexend", sans-serif; */
  /* font-size: 16px !important; */
}

.ir-search {
  padding-left: 40px !important;
  width: 100%;
}

.ir-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 19px;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.ir-search-icon i,
.ir-search-icon svg {
  width: 24px;
  height: 24px;
}

/* Date Filter */
.ir-date-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.ir-date-filter label {
  font-size: 16px;
  color: #A2A1A8;
  white-space: nowrap;
  font-weight: 500;
}

.ir-date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ir-date-range {
  /* padding-right: 40px !important; */
  cursor: pointer;
}

.ir-calendar-icon {
  /* position: absolute; */
  right: 3px;
  top: 60%;
  /* transform: translateY(-50%); */
  color: #A2A1A8;
  font-size: 14px;
  pointer-events: none;
  cursor: pointer;
}

.ir-calendar-icon i,
.ir-calendar-icon svg {
  width: 22px;
  height: 22px;
}

/* Currency Filter */
.ir-currency-filter {
  /*display: flex;*/
  /*align-items: center;*/
  /*gap: 8px;*/
  max-width: 205px;
  width: 100%;
}

.ir-currency-filter-icon {
  color: #6b7280;
  font-size: 14px;
}

.ir-currency-filter-icon i,
.ir-currency-filter-icon svg {
  width: 14px;
  height: 14px;
}

.ir-currency-select {
}

/* Form Elements */
.ir-input, .ir-select {
    padding: 9px 12px !IMPORTANT;
    border: 1px solid #686868 !important;
    background: white;
    transition: all 0.2s ease;
    outline: none;
    font-family: "Lexend", sans-serif;
    font-size: 16px !important;
    border-radius: 0 !important;
    color: #686868 !important;
    width: 100%;
}

.ir-input:focus,
.ir-select:focus {
}

.ir-input::placeholder {
  color: #9ca3af;
}

/* Export Button */
.ir-export-btn {
  background: #194C9F !IMPORTANT;
  color: white;
  border: none;
  border-radius: 0 !important;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-weight: lighter;
  line-height: 24px;
  padding: 10px 20px;
  font-family: "Lexend", sans-serif;
}

.ir-export-btn:hover {
  /* background: #1d4ed8; */
  /* transform: translateY(-1px); */
  /* box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3); */
}

.ir-export-btn:active {
  transform: translateY(0);
}

.ir-export-btn i,
.ir-export-btn svg {
  width: 14px;
  height: 14px;
}

/* Loading Indicator */
.ir-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: #6b7280;
  font-size: 14px;
}

.ir-loading-icon {
  animation: spin 1s linear infinite;
}

.ir-loading-icon i,
.ir-loading-icon svg {
  width: 20px;
  height: 20px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Table Container */
.ir-table-container {
  margin-bottom: 0;
}

.ir-tab-content {
  display: none;
}

.ir-tab-content.active {
  display: block;
}

/* Table Header Title */
.ir-table-header-title {
  /* background: #f8fafc; */
  padding: 12px 16px;
  /* border: 1px solid #e5e7eb; */
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.ir-table-header-title h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.ir-tab-description {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

/* Table Styles */
.ir-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  margin: 0;
}

.ir-table-header {
  background: #194C9F !important;
  color: white;
}

.ir-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  font-weight: 700;
  vertical-align: middle;
  font-family: 'Poppins';
}

.ir-table th:last-child {
  border-right: none;
}

.ir-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.ir-table th.sortable:hover {
}

.ir-sort-icons {
  margin-left: 8px;
  display: inline-block;
}

.ir-sort-icons i,
.ir-sort-icons svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.ir-table th.sortable:hover .ir-sort-icons i,
.ir-table th.sortable:hover .ir-sort-icons svg {
  opacity: 1;
}

.ir-select-column {
  width: 40px;
  text-align: center;
}

.ir-select-all,
.ir-row-select {
  cursor: pointer;
}

.ir-table td {
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid #00C8FF !IMPORTANT;
  border-right: 1px solid #00C8FF !IMPORTANT;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  vertical-align: middle;
  font-family: 'Poppins';
}

.ir-table td:last-child {
  border-right: none;
}

.ir-table-row:nth-child(even) {
  background: #f9fafb;
}

.ir-container.ir-striped .ir-table-row:nth-child(even) {
  background: transparent !IMPORTANT;
}
.ir-table tbody tr:last-child td {
  border-bottom: none;
}

/* Row Status Styles */
.ir-row-status-highlighted {
  background-color: #fef3c7 !important;
}

.ir-row-status-warning {
  background-color: #fef3c7 !important;
  border-left: 4px solid #f59e0b;
}

.ir-row-status-success {
  background-color: #d1fae5 !important;
  border-left: 4px solid #10b981;
}

.ir-row-status-danger {
  background-color: #fee2e2 !important;
  border-left: 4px solid #ef4444;
}
.ir-table-row td:last-child {
    text-align: left !important;
}
.ir-table th.sortable:last-child {
    text-align: left !IMPORTANT;
}
/* Badge Styles */
.ir-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.ir-badge-normal {
  background: #f3f4f6;
  color: #374151;
}
.ir-badge-highlighted {
  background: #fef3c7;
  color: #92400e;
}
.ir-badge-warning {
  background: #fef3c7;
  color: #92400e;
}
.ir-badge-success {
  background: #d1fae5;
  color: #065f46;
}
.ir-badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

/* No Data Styles */
.ir-no-data td {
  text-align: center;
  padding: 40px 16px;
  color: #6b7280;
}

.ir-no-data-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ir-no-data-cell i,
.ir-no-data-cell svg {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

.ir-no-data-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: #6b7280;
  font-size: 14px;
}

.ir-no-data-message i,
.ir-no-data-message svg {
  width: 20px;
  height: 20px;
}

/* Pagination */
.ir-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  gap: 16px;
  padding: 10px 15px;
  border: 1px solid #00C8FF;
}

.ir-pagination-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  font-weight: lighter;
  font-family: "Lexend", sans-serif;
  line-height: normal;
}

.ir-pagination-center {
  font-size: 14px;
  color: #A2A1A8;
  font-weight: 500;
}

.ir-pagination-right {
  display: flex;
  align-items: center;
}

.ir-pagination {
  display: flex;
  gap: 4px;
}

.ir-page-btn {
  background: white;
  border: 1px solid #d1d5db;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 35px;
  height: 35px;
  border-radius: 0 !important;
  color: #000 !important;
  border: 0 !important;
}

.ir-page-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.ir-page-btn.active {
  background: transparent !important;
  color: #194C9F !important;
  border: 1px solid #194C9F !important;
}

.ir-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ir-page-btn:disabled:hover {
  background: white;
  border-color: #d1d5db;
}

.ir-page-btn i,
.ir-page-btn svg {
  width: 12px;
  height: 12px;
}

/* Items per page select */
.ir-items-per-page {
  min-width: 0;
  width: 100%;
  max-width: 65px;
  padding-right:0 !IMPORTANT;
      padding-left: 5px !important;
}

/* Auto Refresh Indicator */
.ir-auto-refresh-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f3f4f6;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ir-auto-refresh-indicator i,
.ir-auto-refresh-indicator svg {
  width: 12px;
  height: 12px;
  animation: spin 2s linear infinite;
}


.ir-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.ir-table-container.loading {
  position: relative;
  pointer-events: none;
}

.ir-table-container.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99;
}
button.ir-tab svg path {
    stroke: #686868 !important;
}
button.ir-tab.active {
    color: #194C9F !important;
    background: linear-gradient(180deg, rgba(230, 240, 255, 0) 49.76%, #E6F0FF 100%);
    border-bottom: 1px solid #194C9F !important;
}
button.ir-tab.active svg path {
    stroke: #194C9F !important;
}
.ir-filters-left {
    width: 100% !important;
    max-width: 205px;
}
.ir-filters-left input.ir-input.ir-search {
    padding-left: 50px !important;
}
select.ir-select.ir-currency-select {
    font-size: 18px !important;
    font-weight: 400 !important;
    font-family: 'Poppins' !IMPORTANT;
}
.ir-filters-right {
    border: 1px solid #A2A1A8;
    padding: 8px 20px;
}
.ir-date-input-wrapper input.ir-input.ir-date-range {
    padding: 0 !important;
    border: 0 !IMPORTANT;
}
button.ir-export-btn svg {
    width: 24px !important;
    height: 24px !important;
}



 

/* Responsive Table */
.ir-container.ir-responsive .ir-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ir-container.ir-responsive .ir-table {
  min-width: 100%;
}

/* Print Styles */
@media print {
  .ir-filters,
  .ir-pagination-container,
  .ir-export-btn,
  .ir-auto-refresh-indicator {
    display: none !important;
  }

  .ir-container {
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .ir-table {
    border: 1px solid #000;
  }

  .ir-table th,
  .ir-table td {
    border: 1px solid #000;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .ir-container {
   
    border-color: #374151;
    color: #f9fafb;
  }

  .ir-title {
    color: #f9fafb;
  }

  .ir-description {
    color: #9ca3af;
  }

  .ir-input,
  .ir-select {
    border-color: #4b5563;
    color: #f9fafb;
  }

  .ir-input::placeholder {
    color: #6b7280;
  }

  .ir-table {
    border-color: #374151;
  }

  .ir-table th,
  .ir-table td {
    border-color: #374151;
  }

  .ir-table td {
    color: #f9fafb;
  }

  /*.ir-table-row:nth-child(even) {*/
  /*  background: #374151;*/
  /*}*/

  /*.ir-container.ir-hover-enabled .ir-table-row:hover {*/
  /*  background: #4b5563;*/
  /*}*/
}

/* Enhanced Date Picker Styles */
.ir-date-picker-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ir-date-picker-popup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 24px;
  min-width: 320px;
  max-width: 400px;
  position: relative;
  animation: irDatePickerSlideIn 0.3s ease-out;
    transform: translateY(-80%);
    
}


@keyframes irDatePickerSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.ir-date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.ir-date-picker-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.ir-date-picker-close {
  background: #f3f4f6;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ir-date-picker-close:hover {
  background: #e5e7eb;
  color: #374151;
}

.ir-date-presets {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ir-preset-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #475569;
}

.ir-preset-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.ir-preset-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.ir-date-inputs {
  margin-bottom: 20px;
}

.ir-date-input-group {
  margin-bottom: 16px;
}

.ir-date-input-group:last-child {
  margin-bottom: 0;
}

.ir-date-input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.ir-date-input-group input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
  outline: none;
}

.ir-date-input-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ir-date-picker-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.ir-date-apply,
.ir-date-cancel {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.ir-date-apply {
  background: #2563eb;
  color: white;
}

.ir-date-apply:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.ir-date-cancel {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.ir-date-cancel:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Enhanced Notification Styles */
.ir-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  display: none;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: irSlideInRight 0.3s ease-out;
}

@keyframes irSlideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ir-notification-success {
  background: #10b981;
  color: white;
  border-left: 4px solid #059669;
}

.ir-notification-error {
  background: #ef4444;
  color: white;
  border-left: 4px solid #dc2626;
}

.ir-notification-warning {
  background: #f59e0b;
  color: white;
  border-left: 4px solid #d97706;
}

.ir-notification-info {
  background: #3b82f6;
  color: white;
  border-left: 4px solid #2563eb;
}

/* Enhanced Export Button States */
.ir-export-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ir-export-btn:disabled:hover {
  background: #2563eb;
  transform: none;
  box-shadow: none;
}

.ir-export-btn .fa-spinner,
.ir-export-btn .fa-spin {
  margin-right: 8px;
}

/* Selection Indicator */
.ir-selection-indicator {
  background: #3b82f6;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  animation: irFadeIn 0.3s ease-in-out;
}
 
@media (max-width: 1100px) {
.overviw-focus > .elementor-container.elementor-column-gap-default {
    flex-direction: column;
}
.overviw-focus .overview-sec-one, .overviw-focus .exchng-rat-col {
    width: 100% !important;
    max-width: 100%;
}
}
 
.ir-tab-content {
    border: 1px solid #00C8FF;
    border-top: 10px solid #194C9F;
}

span.ir-sort-icons svg path {
    fill: #fff;
}
@media (max-width: 991px) {

.ir-tab {
    font-size: 16px;
}
}
@media (max-width: 768px) {

.ir-table th {
    padding: 10px 14px;  
    font-size: 16px; 
}
.ir-table td {
    padding: 10px 10px 10px 12px;
    font-size: 14px;
}
.ir-pagination-container {  
    padding: 10px; 
}
.ir-pagination-center {
    font-size: 12px;
    text-align: center;
}
.ir-tabs-nav { 
    margin-bottom: 15px; 
    flex-wrap: wrap;
}
.ir-filters-bottom { 
    margin-bottom: 15px; 
}
.ir-date-picker-popup {
    max-width: 350px;
    transform: translateY(-100%);
}
}

@media (max-width: 599px) {
.ir-input, .ir-select { 
    font-size: 14px !important; 
}
.ir-date-filter label {
    font-size: 14px; 
}
select.ir-select.ir-currency-select {
    font-size: 16px !important; 
}
.ir-calendar-icon i, .ir-calendar-icon svg {
    width: 18px;
    height: 18px;
}
.ir-filters-left input.ir-input.ir-search {
    padding-left: 45px !important;
}
.ir-search-icon i, .ir-search-icon svg {
    width: 20px;
    height: 20px;
}

.ir-table th:first-child, .ir-table th:last-child, .ir-table th:nth-child(2) {
    width: 100% !important;
    max-width: 33%;
}
.ir-table td { 
    font-size: 12px;
}
.ir-table th { 
    font-size: 12px;
}
.ir-pagination-left { 
    font-size: 12px; 
}
.ir-page-btn { 
    width: 25px;
    height: 25px; 
}
.ir-pagination-left select.ir-select.ir-items-per-page {
    padding: 4px 0px  !important;
}
.ir-filters {
    flex-direction: column;
    align-items: self-start;
}
.ir-filters-left { 
    max-width: 100%;
}
.ir-search-wrapper { 
    width: 100%; max-width: 320px;
}
.ir-filters-right { 
    max-width: 320px;
}

.ir-filters-bottom {
    flex-direction: column;
    align-items: self-start;
}
.ir-currency-filter { 
    max-width: 320px; 
}
.ir-tabs-nav { 
    column-gap: 10px;
    row-gap: 0 !important;
}
.ir-header {
    margin-bottom: 10px !important; 
}
}



@media (max-width: 480px) {
    .ir-pagination-container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
    .ir-date-picker-popup {
    max-width: 320px; 
    transform: translate(-10%, -130%);
}
}

@media (max-width: 420px) {

.ir-date-picker-popup {
    max-width: 270px;
    transform: translate(-6%, -150%);
    padding: 10px;
}

}

@media (max-width: 380px) {

.ir-date-picker-header { 
    margin-bottom: 10px;
    padding-bottom: 10px; 
}
.ir-date-picker-header h4 { 
    font-size: 16px; 
}
.ir-preset-btn { 
    padding: 7px 10px;
    font-size: 10px; 
}
.ir-date-input-group label { 
    font-size: 12px; 
}
.ir-date-input-group input {
    padding: 7px 10px;
    font-size: 12px;
}
.ir-date-picker-footer { 
    padding-top: 10px; 
}
.ir-date-apply, .ir-date-cancel {
    padding: 8px 15px; 
    font-size: 12px; 
}
.ir-date-picker-popup {
    max-width: 270px;
    transform: translate(0%, -150%); 
    top: 100% !important;
    min-width: 270px;
}
}