/* Master Set Definition Tab Styles */
.master-set-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.master-set-content h2 {
    color: #2196F3;
    margin-bottom: 20px;
    border-bottom: 3px solid #2196F3;
    padding-bottom: 10px;
}

.master-set-content h3 {
    color: #666;
    margin-top: 30px;
    margin-bottom: 15px;
}

.master-set-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.master-set-content li {
    margin-bottom: 8px;
}

.master-set-content a {
    color: #2196F3;
    text-decoration: none;
}

.master-set-content a:hover {
    text-decoration: underline;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.info-box {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

/* Card Exclusion Styles */
.exclusions-section {
    margin-top: 30px;
}

.exclusion-controls {
    margin-bottom: 20px;
}

#exclude-search {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}

#exclude-search:focus {
    outline: none;
    border-color: #2196F3;
}

.exclude-results {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    display: none;
}

.exclude-results.show {
    display: block;
}

.exclude-result-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclude-result-item:hover {
    background: #f5f5f5;
}

.exclude-result-item:last-child {
    border-bottom: none;
}

.exclude-result-image {
    width: 30px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
}

.exclude-result-info {
    flex: 1;
}

.exclude-result-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.exclude-result-price {
    font-size: 12px;
    color: #666;
}

.excluded-cards-list h4 {
    color: #666;
    margin-bottom: 10px;
}

.excluded-cards {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    min-height: 50px;
}

.no-exclusions {
    color: #999;
    font-style: italic;
    margin: 0;
}

.excluded-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.excluded-card-image {
    width: 30px;
    height: 42px;
    object-fit: cover;
    border-radius: 4px;
}

.excluded-card-info {
    flex: 1;
}

.excluded-card-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.excluded-card-price {
    font-size: 12px;
    color: #666;
}

.remove-exclusion {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.remove-exclusion:hover {
    background: #c82333;
}