/**
 * Whidbey Service Tracker Styles - Integrates with existing page
 */
.whidbey-selection-summary {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.whidbey-selection-summary h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2em;
}

.whidbey-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.whidbey-summary-table th,
.whidbey-summary-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.whidbey-summary-table th {
    background-color: #f0f0f0;
    font-weight: 600;
}

.whidbey-no-selection {
    font-style: italic;
    color: #666;
}

.whidbey-summary-actions {
    margin-top: 20px;
    text-align: right;
}

.whidbey-button {
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.whidbey-button-primary {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
}

.whidbey-button-primary:hover:not(:disabled) {
    background-color: #3e8e41;
}

.whidbey-button-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.whidbey-remove-button {
    background-color: #f44336;
    color: white;
    font-size: 12px;
    padding: 6px 12px;
}

.whidbey-remove-button:hover {
    background-color: #d32f2f;
}

/* Style for selected buttons in the existing UI */
.address-price-button.selected {
    background-color: #f0f0f0;
    border-left: 4px solid #4CAF50;
	color: var(--sherpa-blue-color);
}