/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/admin/styles/carousel-admin.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/**
 * Carousel Admin Styles
 *
 * Styles for the carousel admin interface including
 * slider selection, drag-and-drop, and settings panels.
 *
 * @package wp-before-after-image-slider
 * @since 2.1.0
 */
/* Slider Selection */
.bais-carousel-slider-selection {
  margin: 20px 0;
}

.bais-slider-selection-header {
  margin-bottom: 20px;
}

.bais-search-box input[type=text] {
  width: 100%;
  max-width: 400px;
  padding: 8px 12px;
  font-size: 14px;
}

.bais-slider-columns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.bais-available-sliders,
.bais-selected-sliders {
  flex: 1;
  min-width: 0;
}

.bais-available-sliders h3,
.bais-selected-sliders h3 {
  margin: 0 0 15px 0;
  padding: 10px;
  background: #f0f0f1;
  border-right: 4px solid #2271b1;
  font-size: 14px;
  font-weight: 600;
}

.bais-slider-list {
  border: 1px solid #c3c4c7;
  background: #fff;
  min-height: 300px;
  max-height: 600px;
  overflow-y: auto;
  padding: 10px;
}

/* Slider Item */
.bais-slider-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border: 1px solid #dcdcde;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.bais-slider-item:hover {
  background: #fff;
  border-color: #2271b1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bais-slider-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f1;
  position: relative;
}

.bais-slider-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bais-slider-type-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  padding: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.bais-slider-type-indicator.dashicons-format-image {
  background: rgba(74, 37, 225, 0.85);
}
.bais-slider-type-indicator.dashicons-video-alt2 {
  background: rgba(220, 38, 38, 0.85);
}
.bais-slider-type-indicator.dashicons-video-alt3 {
  background: rgba(255, 0, 0, 0.85);
}

.bais-slider-info {
  flex: 1;
  min-width: 0;
}

.bais-slider-info h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1d2327;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bais-slider-id {
  font-size: 12px;
  color: #646970;
}

.bais-slider-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bais-slider-actions .button {
  padding: 4px 8px;
  min-height: 32px;
}

.bais-slider-actions .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.bais-drag-handle {
  cursor: move;
  color: #646970;
  transition: color 0.2s ease;
}

.bais-drag-handle:hover {
  color: #2271b1;
}

/* Sortable Placeholder */
.bais-slider-placeholder {
  background: #e3f2fd;
  border: 2px dashed #2271b1;
  margin-bottom: 10px;
  height: 84px;
  border-radius: 4px;
}

/* Carousel Settings */
.bais-carousel-settings {
  margin: 20px 0;
}

.bais-carousel-settings .form-table {
  margin-top: 0;
}

.bais-carousel-settings .form-table th {
  padding: 15px 0 15px 10px;
  width: 200px;
}

.bais-carousel-settings .form-table td {
  padding: 15px 10px;
}

.bais-carousel-settings h3 {
  margin: 20px 0 10px 0;
  padding: 10px 0;
  border-bottom: 1px solid #c3c4c7;
  font-size: 15px;
  font-weight: 600;
  color: #1d2327;
}

.bais-carousel-settings h3:first-child {
  margin-top: 0;
}

.bais-carousel-settings .form-table tr:first-child th,
.bais-carousel-settings .form-table tr:first-child td {
  padding-top: 0;
}

.bais-carousel-settings input[type=number] {
  width: 80px;
}

.bais-carousel-settings input[type=checkbox] {
  margin-left: 8px;
}

.bais-carousel-settings .description {
  margin-top: 5px;
  font-style: italic;
}

.bais-carousel-settings label {
  display: inline-block;
  margin-left: 15px;
}

/* Copy Shortcode Button */
.copy-shortcode {
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-shortcode.copied {
  color: #00a32a;
  border-color: #00a32a;
}

/* Admin Columns */
.column-sliders {
  width: 80px;
  text-align: center;
}

.column-shortcode {
  width: 350px;
}

.column-shortcode code {
  display: inline-block;
  padding: 4px 8px;
  background: #f0f0f1;
  border: 1px solid #c3c4c7;
  border-radius: 3px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1280px) {
  .bais-slider-columns {
    flex-direction: column;
  }
  .bais-slider-list {
    max-height: 400px;
  }
}
@media (max-width: 782px) {
  .bais-slider-item {
    flex-wrap: wrap;
  }
  .bais-slider-info {
    flex: 1 1 calc(100% - 80px);
  }
  .bais-slider-actions {
    flex: 1 1 100%;
    justify-content: flex-end;
    margin-top: 8px;
  }
  .column-shortcode {
    width: auto;
  }
  .bais-carousel-settings .form-table th,
  .bais-carousel-settings .form-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .bais-carousel-settings .form-table th {
    padding-bottom: 5px;
  }
}
