.master-addons_page_jltma-demo-importer .wrap {
  margin: 0;
}

.jltma-demo-importer {
  min-height: calc(100vh - 32px);
  background: #f1f3f4;
  padding: 20px;
}
.jltma-demo-importer .demo-importer-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.jltma-demo-importer .demo-importer-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.jltma-demo-importer .demo-importer-header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1d2327;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.jltma-demo-importer .demo-importer-header h1 .dashicons {
  color: #6814cd;
  font-size: 28px;
  width: 28px;
  height: 28px;
}
.jltma-demo-importer .demo-importer-header .header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #6814cd;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}
.jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import:hover:not(:disabled) {
  background: #5a11b3;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
.jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import:disabled, .jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import.importing {
  opacity: 0.6;
  cursor: not-allowed;
}
.jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import.imported {
  background: #4CAF50;
  cursor: default;
}
.jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import.imported:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.jltma-demo-importer .templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 20px [col-start]);
  gap: 25px;
  margin-top: 30px;
}
.jltma-demo-importer .templates-grid .template-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.jltma-demo-importer .templates-grid .template-item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.jltma-demo-importer .templates-grid .template-item:hover .template-preview .template-image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.jltma-demo-importer .templates-grid .template-item .template-preview {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f9fa;
}
.jltma-demo-importer .templates-grid .template-item .template-preview .template-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.jltma-demo-importer .templates-grid .template-item .template-preview .template-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}
.jltma-demo-importer .templates-grid .template-item .template-preview .template-badge.pro-badge {
  background: rgba(255, 107, 107, 0.95);
  color: #fff;
}
.jltma-demo-importer .templates-grid .template-item .template-preview .template-badge.free-badge {
  background: rgba(95, 95, 246, 0.95);
  color: #fff;
}
.jltma-demo-importer .templates-grid .template-item .template-preview .template-badge.premium-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.jltma-demo-importer .templates-grid .template-item .template-info {
  padding: 20px;
}
.jltma-demo-importer .templates-grid .template-item .template-info .template-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}
.jltma-demo-importer .templates-grid .template-item .template-info .template-title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1d2327;
  line-height: 1.4;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.jltma-demo-importer .templates-grid .template-item .template-info .template-title .template-category {
  font-size: 12px;
  color: #6d7882;
  background: #f0f0f1;
  padding: 2px 8px;
  border-radius: 3px;
}
.jltma-demo-importer .templates-grid .template-item .template-info .template-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #6d7882;
}
.jltma-demo-importer .templates-grid .template-item .template-info .template-meta .meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.jltma-demo-importer .templates-grid .template-item .template-info .template-meta .meta-item .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: #8c8f94;
}
.jltma-demo-importer .templates-grid .template-item .template-actions {
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-view-btn,
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-view-btn:disabled,
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-view-btn {
  background: transparent;
  color: #0e0e2c;
  border: 1px solid #0e0e2c;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-view-btn:hover:not(:disabled) {
  background: #0e0e2c;
  color: #fff;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn {
  background: #6814cd;
  color: #fff;
  border: 1px solid #6814cd;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn:hover:not(:disabled) {
  background: #5a11b3;
  border-color: #5a11b3;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn.importing {
  background: #f39c12;
  border-color: #f39c12;
  cursor: wait;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn.imported {
  background: #4CAF50;
  border-color: #4CAF50;
  cursor: default;
}
.jltma-demo-importer .templates-grid .template-item .template-actions .template-import-btn.imported:hover {
  background: #4CAF50;
  border-color: #4CAF50;
}
.jltma-demo-importer .loading-templates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 400px;
}
.jltma-demo-importer .loading-templates .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #6814cd;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.jltma-demo-importer .loading-templates p {
  color: #666;
  font-size: 16px;
}
.jltma-demo-importer .no-templates {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 30px;
}
.jltma-demo-importer .no-templates .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: #c3c4c7;
  margin-bottom: 20px;
}
.jltma-demo-importer .no-templates h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #1d2327;
}
.jltma-demo-importer .no-templates p {
  margin: 0;
  font-size: 14px;
  color: #6d7882;
}
.jltma-demo-importer .import-error {
  background: #fef1f1;
  border: 1px solid #f0b7b7;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.jltma-demo-importer .import-error .dashicons {
  color: #d63638;
  font-size: 20px;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.jltma-demo-importer .import-error .error-message {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #d63638;
  font-size: 14px;
}
.jltma-demo-importer .import-success {
  background: #e6ffed;
  border: 1px solid #7ad88e;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.jltma-demo-importer .import-success .dashicons {
  color: #00a32a;
  font-size: 20px;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.jltma-demo-importer .import-success .success-message {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #00a32a;
  font-size: 14px;
}
.jltma-demo-importer .import-progress {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 999999;
  min-width: 300px;
  text-align: center;
}
.jltma-demo-importer .import-progress .progress-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #6814cd;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.jltma-demo-importer .import-progress .progress-text {
  font-size: 14px;
  color: #1d2327;
  margin-bottom: 10px;
  font-weight: 500;
}
.jltma-demo-importer .import-progress .progress-details {
  font-size: 12px;
  color: #6d7882;
}
@media (max-width: 1200px) {
  .jltma-demo-importer .templates-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .jltma-demo-importer {
    padding: 10px;
  }
  .jltma-demo-importer .demo-importer-container {
    padding: 20px;
    border-radius: 0;
  }
  .jltma-demo-importer .demo-importer-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .jltma-demo-importer .demo-importer-header h1 {
    font-size: 20px;
  }
  .jltma-demo-importer .demo-importer-header .header-actions {
    width: 100%;
  }
  .jltma-demo-importer .demo-importer-header .header-actions .jltma_demo-import {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .jltma-demo-importer .templates-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .jltma-demo-importer .templates-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .jltma-demo-importer .templates-grid .template-item .template-preview {
    height: 200px;
  }
}

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.master-addons_page_jltma-demo-importer .notice,
.master-addons_page_jltma-demo-importer .error,
.master-addons_page_jltma-demo-importer .updated {
  display: none !important;
}
.master-addons_page_jltma-demo-importer #wpbody-content {
  padding-bottom: 0;
}

.folded .jltma-demo-importer {
  margin-left: -20px;
}

#wpbody .jltma-demo-importer {
  margin-top: 0;
}

/*# sourceMappingURL=jltma-demo-importer.css.map*/