/* sell_profile_widget.css — 매도 프로필 선택 위젯 */
.sell-profile-widget {
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    margin: 16px 0;
}

.sell-profile-widget h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.sell-profile-help {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 12px;
}

.sell-profile-help ul {
    margin: 6px 0 0 18px;
    padding: 0;
}

.sell-profile-help li {
    margin: 2px 0;
}

.sell-profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.sell-profile-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sell-profile-card.selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #111;
    margin-bottom: 6px;
}

.badge-default {
    font-size: 11px;
    color: #d97706;
}

.badge-current {
    font-size: 10px;
    background: #2563eb;
    color: #fff;
    padding: 2px 6px;
    border-radius: 999px;
}

.profile-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    min-height: 32px;
}

.profile-kpi {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11.5px;
    color: #374151;
    margin-bottom: 10px;
}

.profile-kpi b {
    color: #111;
}

.btn-apply-profile {
    width: 100%;
    padding: 6px 8px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12.5px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-apply-profile:hover {
    background: #1e40af;
}

.sell-profile-status {
    margin-top: 10px;
    font-size: 12px;
    color: #2563eb;
    min-height: 18px;
}
