/* 羽毛球费用计算器样式 */
.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 卡片基础样式 */
.cost-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cost-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cost-card h3 {
    margin: 0 0 20px 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
}

/* 场地消息解析卡片样式 */
.parse-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.parse-card h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.parse-card .chain-textarea {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.parse-card .chain-textarea:focus {
    background: white;
    border-color: #3b82f6;
}

/* 报名人管理样式 */
.participants-input {
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.name-input, .time-input {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.name-input:focus, .time-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-add {
    padding: 12px 20px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-add:hover {
    background: #059669;
}

.participants-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.list-header {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.participant-item {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.participant-item:last-child {
    border-bottom: none;
}

.participant-item:hover {
    background: #f9fafb;
}

.no-participants {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.btn-remove {
    padding: 6px 12px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-remove:hover {
    background: #dc2626;
}

/* 费用设置样式 */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.input-group input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calculated-label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.amount {
    font-size: 18px;
    font-weight: 600;
    color: #059669;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    text-align: center;
}

/* 按钮样式 */
.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-danger, .btn-success {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* 计算结果样式 */
.results-summary {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 16px;
}

/* 统计表格样式 */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.stats-table th {
    background: #f9fafb;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.stats-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.stats-table tr:hover {
    background: #f9fafb;
}

.stats-summary {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stats-summary p {
    margin: 4px 0;
    color: #475569;
}

.stats-summary strong {
    color: #1e293b;
}

.results-table {
    overflow-x: auto;
    /* 添加这一行确保子元素不被裁剪 */
    min-height: min-content;
}

.results-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    /* 移除 border-radius 和 overflow: hidden 以修复 html2canvas 渲染问题 */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    table-layout: auto;
}

.results-table th {
    background: #f9fafb;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.results-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.results-table tr:hover {
    background: #f9fafb;
}

.highlight {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* 负数金额样式 */
.negative-amount {
    background: #dcfce7;
    color: #166534;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

.negative-amount::before {
    content: "💰 ";
    font-size: 12px;
}

/* 历史记录样式 */
.history-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    background: white;
}

.history-actions {
    margin-left: 12px;
    flex-shrink: 0;
    display: flex;
    gap: 6px;
}

.btn-small {
    padding: 4px 8px;
    font-size: 12px;
    min-width: auto;
}

.btn-danger {
    background-color: #dc2626;
    color: white;
    border: 1px solid #dc2626;
}

.btn-danger:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.history-item .details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.no-history {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* 场地消息解析样式 */
.venue-parse-area {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #f9fafb;
}

.venue-parse-area h4 {
    margin: 0 0 12px 0;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.venue-message-input {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: monospace;
    resize: vertical;
    margin-bottom: 12px;
}

.venue-parse-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.venue-parse-preview {
    display: none;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: white;
}

.venue-preview-list {
    margin: 12px 0;
}

.venue-preview-list .venue-item {
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #f8fafc;
}

.venue-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.venue-info .time-slot {
    font-weight: 600;
    color: #1f2937;
    background-color: #dbeafe;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}

.venue-info .court-info {
    color: #374151;
    font-size: 14px;
}

.venue-details {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
}

.venue-details .floor {
    background-color: #fef3c7;
    padding: 2px 6px;
    border-radius: 3px;
}

.venue-details .date {
    background-color: #ecfdf5;
    padding: 2px 6px;
    border-radius: 3px;
}

.total-info {
    margin: 12px 0 0 0;
    padding: 8px 12px;
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    font-size: 13px;
    color: #0c4a6e;
}

.venue-parse-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .calculator-container {
        padding: 16px;
    }
    
    .cost-card {
        padding: 16px;
    }
    
    .input-row {
        flex-direction: column;
    }
    
    .name-input, .time-input {
        min-width: 100%;
    }
    
    .list-header, .participant-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .list-header {
        display: none;
    }
    
    .participant-item {
        display: block;
        padding: 12px;
    }
    
    .participant-item > * {
        display: block;
        margin-bottom: 4px;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .results-table {
        font-size: 14px;
    }
    
    .parse-section, .manual-section {
        padding: 16px;
    }
    
    .parse-buttons, .preview-buttons {
        flex-direction: column;
    }
    
    .chain-textarea {
        min-height: 100px;
    }
}

/* 场地管理专用样式（无操作列）*/
.venue-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.venue-list .list-header {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 只有时间段和场地数量 */
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.venue-item {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 只有时间段和场地数量 */
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.venue-item:last-child {
    border-bottom: none;
}

.venue-item:hover {
    background: #f9fafb;
}

.no-venues {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* 场地输入样式 */
/* 场地管理专用样式 */
.venue-input {
    margin-bottom: 20px;
}

.venue-input .input-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.count-input {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.count-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 场地预约人管理样式 */
.reservation-input {
    margin-bottom: 20px;
}

.reservation-input .input-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.reservation-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.reservation-list .list-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.reservation-item {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.reservation-item:last-child {
    border-bottom: none;
}

.reservation-item:hover {
    background: #f9fafb;
}

.no-reservations {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

.venue-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.venue-list .list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 100px; /* 时间段、场地数量、操作 */
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.venue-item {
    display: grid;
    grid-template-columns: 2fr 1fr 100px; /* 时间段、场地数量、操作 */
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
}

.venue-item:last-child {
    border-bottom: none;
}

.venue-item:hover {
    background: #f9fafb;
}

.no-venues {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* 响应式设计 - 场地管理 */
@media (max-width: 768px) {
    .venue-input .input-row {
        flex-direction: column;
    }
    
    .count-input {
        min-width: 100%;
    }
    
    .venue-list .list-header {
        display: none;
    }
    
    .venue-item {
        display: block;
        padding: 12px;
    }
    
    .venue-item > * {
        display: block;
        margin-bottom: 4px;
    }
    
    /* 场地预约人管理响应式 */
    .reservation-input .input-row {
        flex-direction: column;
    }
    
    .reservation-list .list-header {
        display: none;
    }
    
    .reservation-item {
        display: block;
        padding: 12px;
    }
    
    .reservation-item > * {
        display: block;
        margin-bottom: 4px;
    }
    
    /* 接龙解析响应式样式 */
    .parse-section textarea {
        min-height: 120px;
    }
    
    .parse-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .parse-buttons button {
        width: 100%;
    }
    
    .preview-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .preview-buttons button {
        width: 100%;
    }
    
    .preview-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .preview-status {
        align-self: flex-end;
    }
}

.summary-text {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    line-height: 1.6;
}

.calculation-summary {
    margin-top: 15px;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 5px;
    font-size: 0.9em;
}

/* 接龙解析功能样式 */
.parse-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.parse-section h4 {
    margin: 0 0 16px 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.manual-section {
    padding: 20px;
    background: #fefefe;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.manual-section h4 {
    margin: 0 0 16px 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.parse-input {
    margin-bottom: 16px;
}

.chain-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.chain-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.parse-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.parse-buttons .btn-primary,
.parse-buttons .btn-secondary {
    min-width: 120px;
    white-space: nowrap;
}

.parse-preview {
    margin-top: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.parse-preview h5 {
    margin: 0 0 12px 0;
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
}

.preview-list {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 12px;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.preview-item:last-child {
    border-bottom: none;
}

.preview-item.duplicate {
    background: #fef2f2;
    color: #991b1b;
}

.preview-item.valid {
    background: #f0fdf4;
    color: #166534;
}

.preview-item.invalid {
    background: #fffbeb;
    color: #92400e;
}

.preview-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.preview-status {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.status-valid {
    background: #dcfce7;
    color: #166534;
}

.status-duplicate {
    background: #fef2f2;
    color: #991b1b;
}

.status-invalid {
    background: #fffbeb;
    color: #92400e;
}

/* 预览项状态样式增强 */
.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 6px;
    border-left: 4px solid #ddd;
}

.preview-item.valid {
    background-color: #f0f9ff;
    border-left-color: #10b981;
}

.preview-item.duplicate {
    background-color: #fffbeb;
    border-left-color: #f59e0b;
}

.preview-item.invalid {
    background-color: #fef2f2;
    border-left-color: #ef4444;
}

.preview-status {
    font-size: 12px;
    font-weight: 500;
}

.status-valid {
    color: #10b981;
}

.status-duplicate {
    color: #f59e0b;
}

.status-invalid {
    color: #ef4444;
}

/* 出球人管理模块样式 */
.ball-provider-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    color: #1f2937;
}

.ball-provider-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ball-provider-card h3 {
    margin: 0 0 20px 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
}

.ball-provider-form {
    margin-bottom: 20px;
}

.ball-provider-form .input-row {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: wrap;
}

.ball-provider-form .input-group {
    flex: 1;
    min-width: 200px;
}

.ball-provider-form .input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
}

.ball-provider-form .input-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    color: #1f2937;
    font-size: 14px;
    transition: all 0.2s ease;
}

.ball-provider-form .input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ball-provider-form .btn-primary {
    height: 42px;
    padding: 0 20px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ball-provider-form .btn-primary:hover {
    background: #059669;
}

.ball-provider-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.ball-provider-list .list-header {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.ball-provider-list .list-header span {
    display: block;
    text-align: left;
}

.ball-provider-list .list-header span:nth-child(2),
.ball-provider-list .list-header span:nth-child(3) {
    text-align: center;
}

.ball-provider-list .ball-provider-item {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    transition: background-color 0.2s ease;
}

.ball-provider-list .ball-provider-item:hover {
    background: #f9fafb;
}

.ball-provider-list .ball-provider-item:last-child {
    border-bottom: none;
}

.ball-provider-list .ball-provider-name {
    font-weight: 500;
    color: #374151;
}

.ball-provider-list .ball-provider-cost {
    font-weight: 600;
    color: #374151;
    text-align: center;
}

.ball-provider-list .remove-ball-provider {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    justify-self: center;
}

.ball-provider-list .remove-ball-provider:hover {
    background: #dc2626;
}

.ball-provider-list .no-ball-providers {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* 场地单价设置样式 */
.price-setting {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.price-setting label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
    white-space: nowrap;
}

.price-input {
    width: 80px;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.price-setting span {
    font-size: 14px;
    color: #6b7280;
}