/* Layout principal */
.themes-layout {
  display: flex;
  gap: 0;
}

/* Sidebar */
.themes-sidebar {
  width: 320px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  border-radius: 1.2rem 0 0 1.2rem;
  padding: 2rem 1.8rem;
  min-height: 70vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.search-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.9rem;
}

.search-box input {
  padding-left: 2.5rem !important;
  border-radius: 1.5rem !important;
  border: 1px solid #cbd5e1;
}

#themes-list {
  height: 517px;
  overflow: auto;
}

.theme-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 0.5rem;
}

.theme-list-item:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

.theme-list-item.active {
  background: #e0e7ff;
  color: #4338ca;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.theme-icon-circle {
  width: 44px;
  height: 44px;
  background: #475569;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.theme-list-item.active .theme-icon-circle {
  background: #4f46e5;
}

.add-theme-button {
  margin-top: 2rem;
  background: #1e293b;
  color: white;
  border: none;
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}

.add-theme-button:hover {
  background: #0f172a;
  transform: translateY(-2px);
}

/* Main Content */
.themes-main {
  height: 779.5px;
  flex: 1;
  background: white;
  border: 1px solid #e2e8f0;
  border-left: none;
  border-radius: 0 1.2rem 1.2rem 0;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.theme-detail {
  overflow: auto;
  height: -webkit-fill-available;
}

.theme-detail-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.theme-detail-desc {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 0rem;
}

.theme-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  margin: 1rem 0;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-card i {
  color: #475569;
  font-size: 1.5rem;
}

.info-label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.info-value {
  font-weight: 600;
  color: #1e293b;
  font-size: 1.05rem;
}

.regulation-name-list {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 19vw;
  box-sizing: border-box;
  margin-bottom: 0rem;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.projects-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
}

.project-card {
  cursor: grab;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
  margin-bottom: 1rem;
}

.project-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.project-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: #94a3b8;
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.project-card {
  transition: opacity 0.2s, transform 0.1s;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.project-card.dragging {
  opacity: 0.5;
  transform: rotate(2.5deg);
  z-index: 1000;
}

.theme-list-item.drag-over {
  background-color: rgba(0, 123, 255, 0.15);
  border: 2px dashed #007bff;
  border-radius: 8px;
}

.project-card:active {
  cursor: grabbing;
}

@media (max-width: 991px) {
  .themes-main {
    height: 829.5px;
  }
  #themes-list {
    height: 567px;
  }
}/*# sourceMappingURL=entity.css.map */