/* --- Wizard Container --- */
.wp-booking-step-container {
    padding: 20px 0;
}

/* --- Service & Employee Cards --- */
.wp-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.wp-booking-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.wp-booking-card:hover {
    border-color: #3b82f6;
    /* Blue-500 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.wp-booking-card.selected {
    border-color: #2563eb;
    /* Blue-600 */
    background: #eff6ff;
    /* Blue-50 */
    box-shadow: 0 0 0 2px #2563eb;
}

.wp-booking-card h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937 !important;
    /* Force visibility against white bg */
}

.wp-booking-card .meta {
    font-size: 13px;
    color: #6b7280 !important;
}

/* --- Categories (Accordion Style for future, currently cards) --- */
.wp-booking-category-card {
    border-left: 4px solid var(--wp-booking-primary);
    /* Logo / Secondary color match */
}

/* --- Buttons --- */
.back-to-categories,
.back-to-services {
    background: transparent !important;
    border: none !important;
    color: #6b7280 !important;
    padding: 0 !important;
    margin-top: 15px !important;
    cursor: pointer;
    font-size: 14px;
}

.back-to-categories:hover,
.back-to-services:hover {
    color: #1f2937 !important;
    text-decoration: underline;
}

/* --- NEW: Separate Summary Card --- */
.ext-service-summary-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px 20px 20px 24px;
    margin-bottom: 20px;
    position: relative;
    /* Blue Bar on Left */
    border-left: 5px solid #0056b3;
    /* Strong Blue */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ext-summary-cat {
    text-transform: uppercase;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ext-summary-service {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    /* Blue Text */
    margin-bottom: 8px;
}

.ext-summary-employee {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ext-summary-employee .dashicons {
    color: #aaa;
    font-size: 16px;
    width: 16px;
    height: 16px;
}