/* ChecklistPanel Component Styles */

.checklist-panel-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.checklist-panel-container.open {
  opacity: 1;
  pointer-events: all;
}

.checklist-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.checklist-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  background: #1a1a1a;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.checklist-panel-container.open .checklist-panel {
  transform: translateX(0);
}

.checklist-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #2a2a2a;
  border-bottom: 1px solid #3a3a3a;
}

.checklist-panel-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #ff6b35;
}

.checklist-panel-close {
  background: none;
  border: none;
  color: #999;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.checklist-panel-close:hover {
  background: #3a3a3a;
  color: #fff;
}

.checklist-panel-content {
  flex: 1;
  overflow: hidden;
}

.checklist-panel-loading {
  padding: 48px;
  text-align: center;
  color: #999;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .checklist-panel {
    max-width: 100%;
  }
}

