﻿.job-card {
    padding: 12px;
    border-radius: 8px;
    background: #f2f2f2;
    transition: all 150ms ease-in-out;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    cursor: pointer;
    user-select: none;
}
.disabled-card {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
    .job-card:hover {
        background: #e8e8e8;
        transform: translateY(-2px);
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .job-card:active {
        transform: translateY(1px);
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

.selected-card {
    border-left: 4px solid #3f51b5;
    padding: 12px 12px 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    animation: slideIn 200ms ease-out;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Slide-in effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Title row */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Title text */
.card-title {
    font-weight: 500;
    font-size: 1.0rem;
}

/* Remove button */
.remove-btn {
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 1rem;
    transition: color 120ms;
}

    .remove-btn:hover {
        color: #d32f2f;
    }

/* Option badges */
.option-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #f1f1f1;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #333;
}

/* Quantity pill */
.qty-pill {
    padding: 3px 9px;
    background: #3f51b5;
    border-radius: 50px;
    font-size: 0.75rem;
    color: white;
    margin-left: 8px;
}

/* Category highlights */
.riser-card {
    border-left-color: #0d6efd;
}

.sprinkler-card {
    border-left-color: #28a745;
}

.misc-card {
    border-left-color: #ff9800;
}