@charset "utf-8";
/* CSS Document */
 
.app-wrapper {
	max-width: 200px;
	margin: 0 auto;
}
.app-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a2332;
	margin-bottom: 6px;
}
.app-subtitle {
	font-size: 13px;
	color: #999;
	margin-bottom: 20px;
}

.custom-select {
	position: relative;
	width: auto;
	max-width: 320px;
	user-select: none;
}

.select-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:1px 2px;
	background: #fff;
	border: 1px solid #767676;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
	height:30px;
	line-height:30px;
	overflow:hidden;
	border-radius:5px;
}
.select-header:hover { 
	border-color: #667eea; 
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.10);
}
.custom-select.open .select-header {
	border-color: #667eea;
	box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

  .select-header .arrow {
    font-size: 12px;
    color: #a0aec0;
    transition: transform 0.3s ease;
    margin-left: 12px;
    flex-shrink: 0;
  }
  .custom-select.open .select-header .arrow {
    transform: rotate(180deg);
  }

  .select-header .selected-text {
    color: #333;
	font-size:13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .select-header .selected-text.placeholder {
	padding-left:6px;
  }

  .selected-tag {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    margin-right: 4px;
  }
  .selected-tag:last-child { margin-right: 0; }
  
  
  
  

  .select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 3px;
    z-index: 1000;
    overflow-y: auto;
  }
  .custom-select.open .select-dropdown {
    display: block;
  }

  .option-group {
    padding: 2px 0;
  }
  .option-group:not(:last-child) {
    border-bottom: 1px solid #f0f2f5;
  }

  .group-label {
    padding: 0 4px;
    font-size: 12px;
    font-weight: 600;
    color: #8b95a9;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
	height:18px;
  }
  .group-label .group-icon {
    font-size: 13px;
	vertical-align:bottom;
  }
  .group-label .group-count {
    font-weight: 400;
    font-size: 11px;
    color: #c0c8d4;
    margin-left: auto;
  }

  .option-group label {
    display: flex;
    font-size: 12px;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
  }
  .option-group label:hover {
    background: #f7f8fc;
    border-left-color: #a0b4e8;
  }
    
  .option-group label input[type="radio"] {
    margin-right: 10px;
    accent-color: #667eea;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
	
  }

  .option-group label.checked {
    background: #f0f3ff;
    border-left-color: #667eea;
  }
  .option-group label.checked input[type="radio"] {
    accent-color: #4f46e5;
  }


  .select-dropdown::-webkit-scrollbar { width: 5px; }
  .select-dropdown::-webkit-scrollbar-track { background: transparent; }
  .select-dropdown::-webkit-scrollbar-thumb { 
    background: #d0d8e4; 
    border-radius: 10px;
  }
  .select-dropdown::-webkit-scrollbar-thumb:hover { background: #b0bac8; }


  .status-panel {
    margin-top: 24px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }
  .status-panel .status-title {
    font-size: 13px;
    color: #8b95a9;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .status-panel .status-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .status-item {
    font-size: 14px;
    color: #2d3748;
  }
  .status-item .s-label {
    color: #8b95a9;
    font-weight: 400;
    margin-right: 4px;
  }
  .status-item .s-value {
    color: #4f46e5;
    font-weight: 600;
  }
  .status-item .s-value.empty {
    color: #c0c8d4;
    font-weight: 400;
  }

  .hint-text {
    margin-top: 12px;
    font-size: 12px;
    color: #b0b8c4;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hint-text .key {
    display: inline-block;
    background: #f0f2f5;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 11px;
    color: #8b95a9;
  }
  
  .option-group>label>input{margin:7px 8px 0 10px;} 