/* SalesPal card components - v1 visual values */

.sp-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.sp-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sp-card-body {
    padding: 1.5rem;
}

.sp-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    background: #f8f9fa;
}

.sp-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sp-card-form {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
