h1 {
  color: #0073aa;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

.custom-order-list,
.custom-product-list,
.custom-user-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.order-card,
.product-card,
.user-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-card:hover,
.product-card:hover,
.user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plugin-icon {
  width: 60px; /* Reduced size */
  height: 60px; /* Reduced size */
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid #0073aa;
}

.plugin-title {
  font-size: 1.5em;
  margin: 10px 0;
  color: #0073aa;
}

.plugin-description {
  color: #666;
  margin: 10px 0;
  font-size: 0.95em;
}

.version {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 15px;
}

.view-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: bold;
}

.view-button:hover {
  background: #005177;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .order-card,
  .product-card,
  .user-card {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 480px) {
  .order-card,
  .product-card,
  .user-card {
    flex: 1 1 100%;
  }
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  background: white;
  color: #0073aa;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  border-color: black;
  cursor: pointer;
  margin: 0 5px;
  transition: background 0.3s;
}

.tab.active {
  background: #e8f5fd;
  color: black;
}

.tab:hover {
  background: #e8f5fd;
}

.bulk-action-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.bulk-action-dropdown {
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 16px;
  color: #495057;
  transition: border-color 0.3s;
}

.bulk-action-dropdown:focus {
  border-color: #007bff;
  outline: none;
}

.bulk-action-button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.bulk-action-button:hover {
  background-color: #0056b3;
}

/* Modal Styles */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#confirmButton {
  padding: 10px 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#confirmButton:hover {
  background-color: #218838;
}

.plugin-dashboard {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: white;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  text-align: center; /* Center the icon and text */
}

.feature-icon {
  font-size: 30px; /* Adjust size */
  color: #0073aa; /* Icon color */
  margin-bottom: 15px; /* Space between icon and text */
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.license-section {
  padding: 20px;
  background-color: #e8f5fd;
  border-radius: 10px;
  border: 1px solid #b0e0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.license-section h2 {
  margin-bottom: 15px;
  color: #0073aa;
}

.license-input {
  display: flex;
  align-items: center;
}

.license-input input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  width: 100%;
  transition: border-color 0.3s;
}

.license-input input:focus {
  border-color: #0073aa;
  outline: none;
}

.license-input button {
  margin-left: 10px; /* Add gap between buttons */
}

.license-input button:first-child {
  margin-left: 0; /* No margin for the first button */
}

.btn {
  padding: 12px 18px;
  border: none;
  border-radius: 5px;
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #005177;
  transform: translateY(-1px);
}

.remove-square-license{
  background-color: #d9534f;
}

.remove-square-license:hover {
  background-color: #c9302c;
  transform: translateY(-1px);
}

.remove-square-license{

  padding: 12px 18px;
  border: none;
  border-radius: 5px;
  background-color:#d9534f;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;

}

.activate-license-btn{

  padding: 12px 18px;
  border: none;
  border-radius: 5px;
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;

}


.activate-license-btn:hover {
  background-color: green;
  transform: translateY(-1px);
}

.notices-section {
  margin-top: 40px;
  padding: 20px;
  background-color: #e8f5fd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notices-section h2 {
  margin-bottom: 15px;
  color: #0073aa;
}

.notice-card {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.notice-icon {
  font-size: 24px;
  margin-right: 10px;
  color: #0073aa;
}

.notice-card p {
  margin: 0;
}

.notice-card:hover {
  background-color: #e1f5fe; /* Light blue background on hover */
}

.warning {
  background-color: #fff3cd;
  color: #856404;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
}

.warning .notice-icon {
  color: #856404; /* Dark yellow for warning */
}

.error .notice-icon {
  color: #721c24; /* Dark red for error */
}

.order-dashboard {
  max-width: 1200px;
  margin: auto;
}

.how-it-works {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 20px;
  color: #0073aa;
}

.steps {
  display: flex;
  align-items: center; /* Center items vertically */
  justify-content: center;
}

.step-card {
  background-color: #e8f5fd;
  border-radius: 10px;
  padding: 30px; /* Padding for content */
  margin: 0 30px; /* Increased gaps between cards */
  width: 250px; /* Width of the card */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.5s ease-in-out, transform 0.5s; /* Transition for fade-in */
  opacity: 0; /* Initially hidden */
  transform: translateY(20px); /* Start slightly lower */
}

.step-card:nth-child(1) {
  animation: fadeIn 1s forwards; /* Fade in with animation for the first card */
  animation-delay: 0s; /* No delay for the first card */
}

.step-card:nth-child(2) {
  animation: fadeIn 1s forwards; /* Fade in with animation for the second card */
  animation-delay: 3s; /* Delay for the second card */
}

.step-card:nth-child(3) {
  animation: fadeIn 1s forwards; /* Fade in with animation for the third card */
  animation-delay: 1.5s; /* No delay for the third card, fade in together with the first */
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* Fully transparent at start */
    transform: translateY(20px); /* Start slightly lower */
  }
  100% {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Return to original position */
  }
}

.step-icon {
  font-size: 40px; /* Icon size */
  color: #0073aa;
  margin-bottom: 10px; /* Space below the icon */
}

.order-list {
  background-color: #ffffff;
  padding: 15px; /* Reduced padding */
  border-radius: 8px; /* Slightly smaller border radius */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.order-list h2 {
  margin-bottom: 15px;
  color: #0073aa;
  font-size: 22px; /* Slightly reduced font size */
  text-align: center; /* Center align header */
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #e8f5fd; /* Header background color */
  color: #0073aa;
}

th,
td {
  padding: 10px; /* Reduced padding for compactness */
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  max-width: 50px; /* Light border for sleekness */
}

th {
  font-weight: 600; /* Medium weight for better readability */
}

tbody tr {
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for transform and shadow */
}

tbody tr:hover {
  transform: translateY(-5px); /* Slightly lift the row */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  background-color: #f9f9f9; /* Light gray background on hover */
}

.status {
  padding: 4px 8px; /* Smaller padding */
  border-radius: 4px;
  font-weight: 500; /* Medium weight for a sleek look */
  font-size: 0.9em; /* Smaller font size */
}

.status.shipped {
  background-color: #4caf50; /* Green for shipped */
  color: white;
}

.status.pending {
  background-color: #ed481f; /* Orange for pending */
  color: white;
}

.syncy-sync-order-btn {
  padding: 8px 12px; /* Reduced padding for compactness */
  border: none;
  border-radius: 4px; /* Slightly smaller radius */
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s; /* Faster transitions */
  font-size: 0.9em; /* Smaller font size */
}

.syncy-sync-order-btn:hover {
  background-color: #4caf50;
  transform: translateY(-1px);
}

.syncy-sync-square-product-btn {
  padding: 8px 12px; /* Reduced padding for compactness */
  border: none;
  border-radius: 4px; /* Slightly smaller radius */
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s; /* Faster transitions */
  font-size: 0.9em; /* Smaller font size */
}

.syncy-sync-square-product-btn:hover {
  background-color: #4caf50;
  transform: translateY(-1px);
}

.syncy-sync-square-users-btn {
  padding: 8px 12px; /* Reduced padding for compactness */
  border: none;
  border-radius: 4px; /* Slightly smaller radius */
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s; /* Faster transitions */
  font-size: 0.9em; /* Smaller font size */
}

.syncy-sync-square-users-btn:hover {
  background-color: #4caf50;
  transform: translateY(-1px);
}



.syncy-sync-woo-product-btn {
  padding: 8px 12px; /* Reduced padding for compactness */
  border: none;
  border-radius: 4px; /* Slightly smaller radius */
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s; /* Faster transitions */
  font-size: 0.9em; /* Smaller font size */
}

.syncy-sync-woo-product-btn:hover {
  background-color: #4caf50;
  transform: translateY(-1px);
}

.syncy-sync-woo-users-btn {
  padding: 8px 12px; /* Reduced padding for compactness */
  border: none;
  border-radius: 4px; /* Slightly smaller radius */
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s; /* Faster transitions */
  font-size: 0.9em; /* Smaller font size */
}

.syncy-sync-woo-users-btn:hover {
  background-color: #4caf50;
  transform: translateY(-1px);
}

.syncy-view-order-btn {
  padding: 8px 12px; /* Reduced padding for compactness */
  border: none;
  border-radius: 4px; /* Slightly smaller radius */
  background-color: #0073aa;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s; /* Faster transitions */
  font-size: 0.9em; /* Smaller font size */
}

.syncy-view-order-btn:hover {
  background-color: #005177;
  transform: translateY(-1px);
}

.order-list-container {
  position: relative; /* To position the refresh button */
}

.refresh-btn {
  background: linear-gradient(
    90deg,
    #0073aa,
    #005177
  ); /* Gradient background */
  color: white;
  padding: 10px 20px; /* Increased padding */
  border: none;
  border-radius: 50px; /* Fully rounded button */
  cursor: pointer;
  transition: all 0.3s; /* Smooth transition for hover effects */
  margin-bottom: 15px; /* Space below the button */
  font-size: 0.95em; /* Slightly larger font size */
  display: flex; /* Flexbox for icon and text */
  align-items: center; /* Center align items */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.refresh-btn .icon {
  margin-right: 8px; /* Space between icon and text */
  font-size: 1.2em; /* Larger icon size for emphasis */
}

.refresh-btn:hover {
  background: linear-gradient(
    90deg,
    #005177,
    #0073aa
  ); /* Inverted gradient on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.refresh-btn:focus {
  outline: none; /* Remove default focus outline */
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height */
  font-size: 1em; /* Adjusted for smaller size */
}

.spinner {
  border: 8px solid rgba(0, 0, 0, 0.1); /* Light gray border */
  border-left: 8px solid #0073aa; /* Color for the spinning effect */
  border-radius: 50%;
  width: 50px; /* Adjusted size */
  height: 50px; /* Adjusted size */
  animation: spin 1s linear infinite; /* Spinning animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader.hidden {
  opacity: 0; /* Hide the loader with a fade */
  visibility: hidden; /* Ensure it does not take up space */
}

.tcsq-settings-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.tcsq-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.tcsq-tabs button {
  flex: 1;
  background-color: transparent;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  color: #333;
  text-align: center;
  transition: all 0.3s;
}

.tcsq-tabs button:hover {
  background-color: #f0f0f0;
}

.tcsq-tabs button.active {
  border-bottom: 3px solid #007bff;
  color: #007bff;
  background-color: #f9f9f9;
}

.tcsq-tab-content {
  display: none;
  padding: 20px;
  background-color: #fff;
}

.tcsq-tab-content.active {
  display: block;
}

.tcsq-form-group {
  margin-bottom: 20px;
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.tcsq-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.tcsq-form-group input[type="text"],
.tcsq-form-group input[type="password"],
.tcsq-form-group select,
.tcsq-form-group input[type="checkbox"] {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #dfe1e5;
  background-color: #fafafa;
  font-size: 14px;
  transition: border 0.2s;
}

.tcsq-form-group input[type="text"]:focus,
.tcsq-form-group input[type="password"]:focus,
.tcsq-form-group select:focus {
  border-color: #007bff;
}

.tcsq-form-group select {
  width: 100%; /* Set to full width */
  max-width: 600px; /* You can adjust this value to increase or decrease the width */
}

.tcsq-form-group input[type="checkbox"] {
  margin-right: 10px;
}

.tcsq-form-group button {
  padding: 10px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s;
}

.tcsq-form-group button:hover {
  background-color: #0056b3;
}

.tcsq-form-group button i {
  margin-right: 8px;
}

.tcsq-form-group input[readonly] {
  background-color: #f1f3f4;
  color: #888;
}

.tcsq-description {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

/* Toggle Switch */
.tcsq-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-top: 10px;
}

.tcsq-toggle input {
  display: none;
}

.tcsq-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.tcsq-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .tcsq-slider {
  background-color: #007bff;
}

input:checked + .tcsq-slider:before {
  transform: translateX(26px);
}


.tcsq-order-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.tcsq-order-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .tcsq-order-slider {
  background-color: #007bff;
}

input:checked + .tcsq-order-slider:before {
  transform: translateX(26px);
}

.tcsq-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Save Button */
.tcsq-save-button {
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.tcsq-save-button:hover {
  background-color: #0056b3;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .tcsq-form-group input[type="text"],
  .tcsq-form-group input[type="password"],
  .tcsq-form-group select,
  .tcsq-form-group button {
    width: 100%;
  }

  .tcsq-tabs button {
    padding: 12px;
  }

  .tcsq-checkbox-group {
    flex-direction: column;
  }
}


/* Square Payment Gateway Css */

.swal2-popup {
  background: linear-gradient(135deg, #141e30 0%, #243b55 100%);
  border-radius: 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
}

.swal2-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.swal2-html-container {
  font-size: 18px;
  font-weight: 400;
  color: black;
  letter-spacing: 0.5px;
}

/* Glowing loader animation */
.glowing-loader {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  position: relative;
}

.glowing-loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: #00c6ff;
  animation: spin 1s ease-in-out infinite, glow 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 198, 255, 0.5); }
  50% { box-shadow: 0 0 20px rgba(0, 198, 255, 1); }
}

/* Fade and scale effect for text */
.fade-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fade-scale.show {
  opacity: 1;
  transform: scale(1);
}

/* Icon and text styling */
.swal-step-text {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  color: black;
}

.swal-step-text i {
  margin-right: 12px;
  font-size: 24px;
  color: #00c6ff;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Success Popup */
.swal2-success-popup {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #333;
}

.swal2-success-popup .swal2-title {
  color: #00c6ff;
}

.swal2-success-popup .swal2-html-container {
  color: #555;
}

.swal2-confirm {
  background: #00c6ff !important;
  color: #fff !important;
  border-radius: 30px;
  font-size: 16px;
  padding: 10px 25px;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
  transition: background-color 0.3s ease;
}

.swal2-confirm:hover {
  background: #0072ff !important;
}

/* Square Payment Gateway Css Ends Here */


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

/* Popup Container */
.popup-container {
  width: 60%;
  max-width: 600px;
  background: linear-gradient(135deg, #f0f5ff, #e0f7fa);
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 30px;
  animation: fadeIn 0.5s ease-out, colorShift 5s ease-in-out infinite alternate;
}

/* Close Button */
.popup-close-btn {
  font-size: 22px;
  font-weight: bold;
  color: #6a6a6a;
  cursor: pointer;
  float: right;
  transition: color 0.2s ease;
}
.popup-close-btn:hover {
  color: #333;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes colorShift {
  0% { background: #f0f5ff; }
  100% { background: #e0f7fa; }
}


.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}
.progress {
  height: 100%;
  width: 0;
  background-color: #4CAF50;
  transition: width 0.4s;
}

/* Global reset for the table */
.syncy-logs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Roboto', sans-serif;
  border-radius: 12px; /* Rounded corners for table */
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.syncy-logs-table th {
  background-color: #f7f9fc; /* Subtle background */
  color: #333; /* Dark text for contrast */
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #e1e4f0; /* Soft border between rows */
}

/* Table Data Styling */
.syncy-logs-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #e1e4f0;
  transition: background-color 0.2s ease-in-out;
}

/* Row Hover Effect */
.syncy-logs-table tr:hover td {
  background-color: #f0f4f8; /* Slightly darkened hover */
}

/* Alternating Row Colors */
.syncy-logs-table tr:nth-child(even) td {
  background-color: #fafafa;
}

/* First Column Styling */
.syncy-logs-table td:first-child {
  font-weight: 600;
  color: #333;
}

/* Last Column - Right Align */
.syncy-logs-table td:last-child {
  text-align: right;
}
/* Status Text Colors */
.status-success {
  color: #2ecc71 !important; /* Green text for success */
  font-weight: bold !important;
}

.status-error {
  color: #e74c3c !important; /* Red text for error */
  font-weight: bold !important;
}



/* Message Column Adjustment */
.syncy-logs-table td.message-column {
  max-width: 600px; /* Increased width for message column */
  word-wrap: break-word; /* Allow wrapping long messages */
}

/* Pagination Styles */
.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination a {
  padding: 10px 16px;
  margin: 0 5px;
  text-decoration: none;
  color: #666;
  border-radius: 20px;
  font-size: 14px;
  background-color: #f4f7fb;
  transition: background-color 0.3s ease;
}

.pagination a.active {
  font-weight: 600;
  color: #ffffff;
  background-color: #3498db; /* Blue active page color */
}

.pagination a:hover {
  background-color: #e1e4f0;
}


/* Container for search box and dropdown to align them inline */
.log-search-form {
  display: flex;
  justify-content: center; /* Center the elements horizontally */
  align-items: center; /* Vertically align the elements */
  margin-bottom: 20px;
}

/* Adjust search input and dropdown to have the same height and look consistent */
.search-box, .search-column {
  height: 38px; /* Ensure same height for both input and dropdown */
  padding: 6px 12px; /* Adjust padding for consistency */
  font-size: 14px; /* Set font size */
  border-radius: 5px; /* Rounded corners for both */
  border: 1px solid #ccc; /* Border color */
  background-color: #fff; /* White background */
  box-sizing: border-box; /* Prevent padding from affecting overall size */
}

/* The search input should have some space to the right for the dropdown */
.search-box {
  margin-right: 10px; /* Space between the search input and the dropdown */
}

/* The dropdown should have a fixed width */
.search-column {
  width: 220px; /* Adjust width of the dropdown */
}

/* Style for the search button */
.search-btn {
  padding: 6px 12px;
  font-size: 14px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #005f8c; /* Hover effect */
}

/* Ensure the dropdown arrow is positioned correctly */
.search-column option {
  padding: 5px 10px;
}

.total_count{
color: #0073aa;
font-weight: 600;
float: right; 
margin-right:10px;
}